Home
last modified time | relevance | path

Searched refs:ImportType (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Object/
H A DCOFFImportFile.cpp176 ImportType Type, ImportNameType NameType);
468 ImportType ImportType, in createShortImport() argument
484 Imp->TypeInfo = (NameType << 2) | ImportType; in createShortImport()
595 ImportType ImportType = IMPORT_CODE; in writeImportLibrary() local
597 ImportType = IMPORT_DATA; in writeImportLibrary()
599 ImportType = IMPORT_CONST; in writeImportLibrary()
620 OF.createShortImport(*Name, E.Ordinal, ImportType, NameType)); in writeImportLibrary()
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DCOFF.h685 enum ImportType : unsigned { enum
717 ImportType getType() const { return static_cast<ImportType>(TypeInfo & 0x3); } in getType()
/llvm-project-15.0.7/clang/unittests/AST/
H A DASTImporterFixtures.cpp213 QualType ASTImporterTestBase::ImportType(QualType FromType, Decl *TUDecl, in ImportType() function in clang::ast_matchers::ASTImporterTestBase
H A DASTImporterFixtures.h192 QualType ImportType(QualType FromType, Decl *TUDecl, TestLanguage ToLang);
H A DASTImporterTest.cpp35 struct ImportType : TestImportBase {}; struct
572 TEST_P(ImportType, ImportAtomicType) { in TEST_P() argument
580 TEST_P(ImportType, ImportUsingType) { in TEST_P() argument
617 TEST_P(ImportType, ImportTypeAliasTemplate) { in TEST_P() argument
647 TEST_P(ImportType, ImportPackExpansion) { in TEST_P() argument
664 TEST_P(ImportType, ImportDependentTemplateSpecialization) { in TEST_P() argument
677 TEST_P(ImportType, ImportDeducedTemplateSpecialization) { in TEST_P() argument
825 ImportType(FromVar->getType().getCanonicalType(), FromVar, Lang_C99); in TEST_P()
6103 QualType ImportedType = ImportType(FromType, FromTypedef, Lang_CXX03); in TEST_P()
6461 QualType ToT = ImportType(From->getType(), From, Lang_CXX14); in TEST_P()
[all …]
/llvm-project-15.0.7/lld/COFF/
H A DInputFiles.h397 llvm::COFF::ImportType importType;
H A DInputFiles.cpp1155 s->importType = code ? ImportType::IMPORT_CODE : ImportType::IMPORT_DATA; in parse()