HomeSort by: relevance | last modified time | path
    Searched refs:VarIter (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 233 /// VarIter is guaranteed to be greater then 0 for every valid iterator.
234 /// Invalid iterator (with null Scope) has VarIter equal to 0.
235 unsigned VarIter = 0;
246 : Scope(&S), VarIter(I) {
249 if (VarIter == 0 && Scope)
255 assert(VarIter != 0 && "Iterator has invalid value of VarIter member");
256 return &Scope->Vars[VarIter - 1];
261 assert(VarIter != 0 && "Iterator has invalid value of VarIter member")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp 1507 auto VarIter = GlobalVariableTable.find(VarName);
1508 if (VarIter == GlobalVariableTable.end())
1511 return VarIter->second;

Completed in 26 milliseconds