Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParser.cpp60 NumCachedScopes = 0; in Parser()
360 if (NumCachedScopes) { in EnterScope()
361 Scope *N = ScopeCache[--NumCachedScopes]; in EnterScope()
380 if (NumCachedScopes == ScopeCacheSize) in ExitScope()
383 ScopeCache[NumCachedScopes++] = OldScope; in ExitScope()
415 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i) in ~Parser()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h89 unsigned NumCachedScopes; variable