Home
last modified time | relevance | path

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

/external/clang/lib/Analysis/
DCFG.cpp108 unsigned VarIter; member in __anon4350aedf0111::LocalScope::const_iterator
115 : Scope(nullptr), VarIter(0) {} in const_iterator()
120 : Scope(&S), VarIter(I) { in const_iterator()
123 if (VarIter == 0 && Scope) in const_iterator()
129 assert (VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ->()
130 return &Scope->Vars[VarIter - 1]; in operator ->()
140 assert (VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ++()
141 --VarIter; in operator ++()
142 if (VarIter == 0) in operator ++()
153 return Scope == rhs.Scope && VarIter == rhs.VarIter; in operator ==()
[all …]