Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTContext.h545 llvm::MapVector<const VarDecl *, unsigned> StaticLocalNumbers; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp11144 StaticLocalNumbers[VD] = Number; in setStaticLocalNumber()
11148 auto I = StaticLocalNumbers.find(VD); in getStaticLocalNumber()
11149 return I != StaticLocalNumbers.end() ? I->second : 1; in getStaticLocalNumber()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp4547 for (const auto &Number : Context.StaticLocalNumbers) in WriteASTCore()