Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParser.cpp60 NumCachedScopes = 0; in Parser()
404 if (NumCachedScopes) { in EnterScope()
405 Scope *N = ScopeCache[--NumCachedScopes]; in EnterScope()
424 if (NumCachedScopes == ScopeCacheSize) in ExitScope()
427 ScopeCache[NumCachedScopes++] = OldScope; in ExitScope()
459 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i) in ~Parser()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h96 unsigned NumCachedScopes; variable