Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DCFG.cpp239 unsigned VarIter = 0; member in __anon76ebc3340111::LocalScope::const_iterator
250 : Scope(&S), VarIter(I) { in const_iterator()
253 if (VarIter == 0 && Scope) in const_iterator()
259 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ->()
260 return &Scope->Vars[VarIter - 1]; in operator ->()
265 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in getFirstVarInScope()
277 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ++()
278 --VarIter; in operator ++()
279 if (VarIter == 0) in operator ++()
290 return Scope == rhs.Scope && VarIter == rhs.VarIter; in operator ==()
[all …]
/openbsd-src/gnu/llvm/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()