Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTContext.h592 llvm::MapVector<const VarDecl *, unsigned> StaticLocalNumbers; variable
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp11871 StaticLocalNumbers[VD] = Number; in setStaticLocalNumber()
11875 auto I = StaticLocalNumbers.find(VD); in getStaticLocalNumber()
11876 return I != StaticLocalNumbers.end() ? I->second : 1; in getStaticLocalNumber()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriter.cpp4749 for (const auto &Number : Context.StaticLocalNumbers) in WriteASTCore()