Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParser.cpp60 NumCachedScopes = 0; in Parser()
405 if (NumCachedScopes) { in EnterScope()
406 Scope *N = ScopeCache[--NumCachedScopes]; in EnterScope()
425 if (NumCachedScopes == ScopeCacheSize) in ExitScope()
428 ScopeCache[NumCachedScopes++] = OldScope; in ExitScope()
460 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i) in ~Parser()
/openbsd-src/gnu/llvm/clang/include/clang/Parse/
H A DParser.h98 unsigned NumCachedScopes; variable