Home
last modified time | relevance | path

Searched refs:VarIter (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/Analysis/
H A DCFG.cpp235 unsigned VarIter = 0; member in __anon8d78c9ed0111::LocalScope::const_iterator
246 : Scope(&S), VarIter(I) { in const_iterator()
249 if (VarIter == 0 && Scope) in const_iterator()
255 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ->()
256 return &Scope->Vars[VarIter - 1]; in operator ->()
274 --VarIter; in operator ++()
275 if (VarIter == 0) in operator ++()
286 return Scope == rhs.Scope && VarIter == rhs.VarIter; in operator ==()
298 bool pointsToFirstDeclaredVar() { return VarIter == 1; } in pointsToFirstDeclaredVar()
335 D += F.VarIter; in distance()
[all …]
/llvm-project-15.0.7/llvm/lib/FileCheck/
H A DFileCheck.cpp1514 auto VarIter = GlobalVariableTable.find(VarName); in getPatternVarValue() local
1515 if (VarIter == GlobalVariableTable.end()) in getPatternVarValue()
1518 return VarIter->second; in getPatternVarValue()