Lines Matching refs:VarIter
214 unsigned VarIter = 0; member in __anon15de256c0111::LocalScope::const_iterator
225 : Scope(&S), VarIter(I) { in const_iterator()
228 if (VarIter == 0 && Scope) in const_iterator()
234 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ->()
235 return &Scope->Vars[VarIter - 1]; in operator ->()
240 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in getFirstVarInScope()
252 assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); in operator ++()
253 --VarIter; in operator ++()
254 if (VarIter == 0) in operator ++()
265 return Scope == rhs.Scope && VarIter == rhs.VarIter; in operator ==()
277 bool pointsToFirstDeclaredVar() { return VarIter == 1; } in pointsToFirstDeclaredVar()
314 D += F.VarIter; in distance()
317 D += F.VarIter - L.VarIter; in distance()