Home
last modified time | relevance | path

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

/external/clang/lib/Analysis/
DCFG.cpp180 unsigned VarIter; member in __anon30bb6a660111::LocalScope::const_iterator
187 : Scope(nullptr), VarIter(0) {} in const_iterator()
192 : Scope(&S), VarIter(I) { in const_iterator()
195 if (VarIter == 0 && Scope) in const_iterator()
201 assert (VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ->()
202 return &Scope->Vars[VarIter - 1]; in operator ->()
212 assert (VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ++()
213 --VarIter; in operator ++()
214 if (VarIter == 0) in operator ++()
225 return Scope == rhs.Scope && VarIter == rhs.VarIter; in operator ==()
[all …]
/external/llvm-project/clang/lib/Analysis/
DCFG.cpp235 unsigned VarIter = 0; member in __anon99fcb4940111::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 ->()
261 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in getFirstVarInScope()
273 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ++()
274 --VarIter; in operator ++()
275 if (VarIter == 0) in operator ++()
286 return Scope == rhs.Scope && VarIter == rhs.VarIter; in operator ==()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileCheck.cpp818 auto VarIter = GlobalVariableTable.find(VarName); in getPatternVarValue() local
819 if (VarIter == GlobalVariableTable.end()) in getPatternVarValue()
822 return VarIter->second; in getPatternVarValue()
/external/llvm-project/llvm/lib/FileCheck/
DFileCheck.cpp1470 auto VarIter = GlobalVariableTable.find(VarName); in getPatternVarValue() local
1471 if (VarIter == GlobalVariableTable.end()) in getPatternVarValue()
1474 return VarIter->second; in getPatternVarValue()