Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp819 CVTypeArray::Iterator firstType = types.begin(); in initializeDependencies() local
820 if (firstType == types.end()) in initializeDependencies()
833 if (firstType->kind() == LF_TYPESERVER2) { in initializeDependencies()
835 TypeDeserializer::deserializeAs<TypeServer2Record>(firstType->data())); in initializeDependencies()
843 if (firstType->kind() == LF_PRECOMP) { in initializeDependencies()
845 TypeDeserializer::deserializeAs<PrecompRecord>(firstType->data())); in initializeDependencies()
852 debugTypes = debugTypes.drop_front(firstType->RecordData.size()); in initializeDependencies()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3401 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()