Lines Matching refs:VarIter
180 unsigned VarIter; member in __anon3efe8e7e0111::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 ==()
271 D += F.VarIter; in distance()
274 D += F.VarIter - L.VarIter; in distance()