Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp3172 TypesLoaded.resize(TypesLoaded.size() + F.LocalNumTypes); in ReadASTBlock()
7188 assert(Index < TypesLoaded.size() && "Type index out-of-range"); in GetType()
7189 if (TypesLoaded[Index].isNull()) { in GetType()
7190 TypesLoaded[Index] = readTypeRecord(Index); in GetType()
7191 if (TypesLoaded[Index].isNull()) in GetType()
7194 TypesLoaded[Index]->setFromAST(); in GetType()
7197 TypesLoaded[Index]); in GetType()
7200 return TypesLoaded[Index].withFastQualifiers(FastQuals); in GetType()
7827 TypesLoaded.size() - llvm::count(TypesLoaded, QualType()); in PrintStats()
7842 if (!TypesLoaded.empty()) in PrintStats()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Serialization/
H A DASTReader.h488 std::vector<QualType> TypesLoaded; variable
1820 return static_cast<unsigned>(TypesLoaded.size()); in getTotalNumTypes()