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.cpp1045 CVTypeArray::Iterator firstType = types.begin(); in initializeDependencies() local
1046 if (firstType == types.end()) in initializeDependencies()
1059 if (firstType->kind() == LF_TYPESERVER2) { in initializeDependencies()
1061 TypeDeserializer::deserializeAs<TypeServer2Record>(firstType->data())); in initializeDependencies()
1069 if (firstType->kind() == LF_PRECOMP) { in initializeDependencies()
1071 TypeDeserializer::deserializeAs<PrecompRecord>(firstType->data())); in initializeDependencies()
1078 debugTypes = debugTypes.drop_front(firstType->RecordData.size()); in initializeDependencies()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3520 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()