Searched refs:VarIter (Results 1 – 1 of 1) sorted by relevance
107 unsigned VarIter; member in __anonecdbebe50111::LocalScope::const_iterator114 : Scope(NULL), VarIter(0) {} in const_iterator()119 : Scope(&S), VarIter(I) { in const_iterator()122 if (VarIter == 0 && Scope) in const_iterator()128 assert (VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ->()129 return &Scope->Vars[VarIter - 1]; in operator ->()139 assert (VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ++()140 --VarIter; in operator ++()141 if (VarIter == 0) in operator ++()152 return Scope == rhs.Scope && VarIter == rhs.VarIter; in operator ==()[all …]