Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp780 CVTypeArray::Iterator firstType = types.begin(); in initializeDependencies() local
781 if (firstType == types.end()) in initializeDependencies()
794 if (firstType->kind() == LF_TYPESERVER2) { in initializeDependencies()
796 TypeDeserializer::deserializeAs<TypeServer2Record>(firstType->data())); in initializeDependencies()
804 if (firstType->kind() == LF_PRECOMP) { in initializeDependencies()
806 TypeDeserializer::deserializeAs<PrecompRecord>(firstType->data())); in initializeDependencies()
813 debugTypes = debugTypes.drop_front(firstType->RecordData.size()); in initializeDependencies()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3387 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()