Home
last modified time | relevance | path

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

/external/clang/lib/Analysis/
DCFG.cpp180 unsigned VarIter; member in __anon83acd1880111::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 ==()
[all …]