Searched defs:TypesLoaded (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Serialization/
H A DASTReader.h388 std::vector<QualType> TypesLoaded; member in class:clang::ASTReader
1501 return static_cast<unsigned>(TypesLoaded.size());
/external/clang/lib/Serialization/
H A DASTReader.cpp2632 TypesLoaded.resize(TypesLoaded.size() + F.LocalNumTypes);
5860 assert(Index < TypesLoaded.size() && "Type index out-of-range");
5861 if (TypesLoaded[Index].isNull()) {
5862 TypesLoaded[Index] = readTypeRecord(Index);
5863 if (TypesLoaded[Index].isNull())
5866 TypesLoaded[Index]->setFromAST();
5869 TypesLoaded[Index]); local
5872 return TypesLoaded[Index].withFastQualifiers(FastQuals);
6626 = TypesLoaded
[all...]

Completed in 97 milliseconds