Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/COFF/
H A DInputFiles.cpp778 CVTypeArray::Iterator firstType = types.begin(); in initializeDependencies() local
779 if (firstType == types.end()) in initializeDependencies()
792 if (firstType->kind() == LF_TYPESERVER2) { in initializeDependencies()
794 TypeDeserializer::deserializeAs<TypeServer2Record>(firstType->data())); in initializeDependencies()
802 if (firstType->kind() == LF_PRECOMP) { in initializeDependencies()
804 TypeDeserializer::deserializeAs<PrecompRecord>(firstType->data())); in initializeDependencies()
811 debugTypes = debugTypes.drop_front(firstType->RecordData.size()); in initializeDependencies()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDecl.h3284 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()