Home
last modified time | relevance | path

Searched refs:Import (Results 1 – 25 of 116) sorted by relevance

12345

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h309 auto ToOrErr = Import(From); in importInto()
317 Import(ExprWithCleanups::CleanupObject From);
323 llvm::Expected<const Type *> Import(const Type *FromT);
329 llvm::Expected<QualType> Import(QualType FromT);
336 llvm::Expected<TypeSourceInfo *> Import(TypeSourceInfo *FromTSI);
343 llvm::Expected<Attr *> Import(const Attr *FromAttr);
350 llvm::Expected<Decl *> Import(Decl *FromD);
351 llvm::Expected<const Decl *> Import(const Decl *FromD) { in Import() function
352 return Import(const_cast<Decl *>(FromD)); in Import()
356 Import(const InheritedConstructor &From);
[all …]
H A DASTContext.h1014 ImportDecl *Import = nullptr; variable
1024 explicit import_iterator(ImportDecl *Import) : Import(Import) {} in import_iterator() argument
1026 reference operator*() const { return Import; }
1027 pointer operator->() const { return Import; }
1030 Import = ASTContext::getNextLocalImport(Import);
1041 return X.Import == Y.Import;
1045 return X.Import != Y.Import;
1137 void addedLocalImportDecl(ImportDecl *Import);
1139 static ImportDecl *getNextLocalImport(ImportDecl *Import) { in getNextLocalImport() argument
1140 return Import->getNextLocalImport(); in getNextLocalImport()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp833 for (const wasm::WasmImport &Import : Imports) { in writeImportSection() local
834 writeString(Import.Module); in writeImportSection()
835 writeString(Import.Field); in writeImportSection()
836 W->OS << char(Import.Kind); in writeImportSection()
838 switch (Import.Kind) { in writeImportSection()
840 encodeULEB128(Import.SigIndex, W->OS); in writeImportSection()
843 W->OS << char(Import.Global.Type); in writeImportSection()
844 W->OS << char(Import.Global.Mutable ? 1 : 0); in writeImportSection()
847 encodeULEB128(Import.Memory.Flags, W->OS); in writeImportSection()
851 W->OS << char(Import.Table.ElemType); in writeImportSection()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp395 void MappingTraits<WasmYAML::Import>::mapping(IO &IO, in mapping()
396 WasmYAML::Import &Import) { in mapping() argument
397 IO.mapRequired("Module", Import.Module); in mapping()
398 IO.mapRequired("Field", Import.Field); in mapping()
399 IO.mapRequired("Kind", Import.Kind); in mapping()
400 if (Import.Kind == wasm::WASM_EXTERNAL_FUNCTION || in mapping()
401 Import.Kind == wasm::WASM_EXTERNAL_TAG) { in mapping()
402 IO.mapRequired("SigIndex", Import.SigIndex); in mapping()
403 } else if (Import.Kind == wasm::WASM_EXTERNAL_GLOBAL) { in mapping()
404 IO.mapRequired("GlobalType", Import.GlobalImport.Type); in mapping()
[all …]
H A DWasmEmitter.cpp395 for (const WasmYAML::Import &Import : Section.Imports) { in writeSectionContent() local
396 writeStringRef(Import.Module, OS); in writeSectionContent()
397 writeStringRef(Import.Field, OS); in writeSectionContent()
398 writeUint8(OS, Import.Kind); in writeSectionContent()
399 switch (Import.Kind) { in writeSectionContent()
401 encodeULEB128(Import.SigIndex, OS); in writeSectionContent()
405 writeUint8(OS, Import.GlobalImport.Type); in writeSectionContent()
406 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent()
411 encodeULEB128(Import.SigIndex, OS); in writeSectionContent()
415 writeLimits(Import.Memory, OS); in writeSectionContent()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp69 for (const serialization::ModuleFile *Import : MF->Imports) in optimizeHeaderSearchOpts() local
70 if (!Visited.contains(Import)) in optimizeHeaderSearchOpts()
71 VisitMF(Import); in optimizeHeaderSearchOpts()
95 for (const serialization::ModuleFile *Import : MF->Imports) in optimizeHeaderSearchOpts() local
96 if (!Visited.contains(Import)) in optimizeHeaderSearchOpts()
97 VisitMF(Import); in optimizeHeaderSearchOpts()
902 for (const Module *Import : M->Imports) in addModulePrebuiltDeps() local
903 if (Import->getTopLevelModule() != M->getTopLevelModule()) in addModulePrebuiltDeps()
904 if (MDC.isPrebuiltModule(Import->getTopLevelModule())) in addModulePrebuiltDeps()
905 if (SeenSubmodules.insert(Import->getTopLevelModule()).second) { in addModulePrebuiltDeps()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp54 llvm::Expected<QualType> ret_or_error = delegate_sp->Import(src_qual_type); in CopyType()
81 llvm::Expected<clang::Decl *> result = delegate_sp->Import(decl); in CopyDecl()
435 bool ClangASTImporter::Import(const CompilerType &type) { in Import() function in ClangASTImporter
479 return Import(CompilerType(type.GetTypeSystem(), in Import()
486 return Import(CompilerType(type.GetTypeSystem(), in Import()
492 return Import(CompilerType(type.GetTypeSystem(), in Import()
498 return Import(CompilerType( in Import()
512 if (Import(compiler_type)) { in CompleteType()
560 DeclFromParser<D> parser_decl(user_decl.Import(dest_ctx, importer)); in ImportOffsetMap()
880 delegate_sp->Import(origin_child_decl); in CompleteAndFetchChildren()
[all …]
H A DCxxModuleHandler.cpp237 llvm::Expected<QualType> type = m_importer->Import(arg.getAsType()); in tryInstantiateStdTemplate()
249 m_importer->Import(arg.getIntegralType()); in tryInstantiateStdTemplate()
293 std::optional<Decl *> CxxModuleHandler::Import(Decl *d) { in Import() function in CxxModuleHandler
H A DCxxModuleHandler.h57 std::optional<clang::Decl *> Import(clang::Decl *d);
H A DClangASTImporter.h168 bool Import(const CompilerType &type);
512 DeclFromParser<D> Import(clang::ASTContext *dest_ctx,
525 DeclFromParser<D> DeclFromUser<D>::Import(clang::ASTContext *dest_ctx, in Import() function
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h90 struct Import { struct
91 Import() {} in Import() function
306 std::vector<Import> Imports;
431 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Import) in LLVM_YAML_IS_SEQUENCE_VECTOR()
466 template <> struct MappingTraits<WasmYAML::Import> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
467 static void mapping(IO &IO, WasmYAML::Import &Import); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd/crypto/openssl/test/recipes/
H A D80-test_pkcs12.t30 Win32::API->Import("kernel32","UINT GetSystemDefaultLCID()");
35 Win32::API->Import("kernel32","UINT GetConsoleOutputCP()");
36 Win32::API->Import("kernel32","BOOL SetConsoleOutputCP(UINT cp)");
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp59 auto SourceNameOrErr = ReverseImporter.Import(Name); in LookupSameContext()
175 auto DeclOrErr = OtherImporter.Import(Persistent); in ImportImpl()
451 auto ImportedSpecOrError = Importer->Import(Spec); in importSpecializations()
487 auto FromNameOrErr = Reverse.Import(Name); in FindExternalVisibleDeclsByName()
507 auto NDOrErr = Importer->Import(LookupRes); in FindExternalVisibleDeclsByName()
530 auto ImportedDeclOrErr = Forward.Import(SourceDecl); in FindExternalLexicalDecls()
H A DASTImporter.cpp191 auto ToOrErr = Importer.Import(From); in importInto()
203 auto ToOrErr = Importer.Import(From); in import()
217 return Importer.Import(From); in import()
993 IdentifierInfo *ToFieldName = Importer.Import(D.getFieldName()); in import()
1901 {*QualifierOrErr, Importer.Import(DTN.getName()), in VisitDependentTemplateSpecializationType()
1912 IdentifierInfo *Name = Importer.Import(T->getIdentifier()); in VisitDependentNameType()
1968 IdentifierInfo *ToIdentifier = Importer.Import(T->getMacroIdentifier()); in VisitMacroQualifiedType()
2470 if (ExpectedDecl ToTypedefOrErr = Importer.Import(FromTypedef)) in setTypedefNameForAnonDecl()
2945 IdentifierInfo *ToIdentifier = Importer.Import(D->getIdentifier()); in VisitNamespaceAliasDecl()
5598 Importer.Import(D->getInstantiatedFromUsingDecl()); in VisitUsingPackDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp496 ImportDecl *Import = ImportDecl::Create(Context, CurContext, ModuleLoc, in ActOnModuleDecl() local
498 CurContext->addDecl(Import); in ActOnModuleDecl()
502 Context.addModuleInitializer(ModuleScopes.back().Module, Import); in ActOnModuleDecl()
508 return ConvertDeclToDeclGroup(Import); in ActOnModuleDecl()
703 ImportDecl *Import = ImportDecl::Create(Context, CurContext, StartLoc, in ActOnModuleImport() local
705 CurContext->addDecl(Import); in ActOnModuleImport()
710 Context.addModuleInitializer(ModuleScopes.back().Module, Import); in ActOnModuleImport()
727 if (ExportLoc.isValid() || getEnclosingExportDecl(Import)) in ActOnModuleImport()
733 return Import; in ActOnModuleImport()
/freebsd/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp332 for (const auto &Import : Imports) { in importFunctions() local
334 size_t Idx = Import.find(':'); in importFunctions()
336 errs() << "Import parameter bad format: " << Import << "\n"; in importFunctions()
339 std::string FunctionName = Import.substr(0, Idx); in importFunctions()
340 std::string FileName = Import.substr(Idx + 1, std::string::npos); in importFunctions()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp748 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab() local
751 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
753 Info.Name = Import.Field; in parseLinkingSectionSymtab()
755 Signature = &Signatures[Import.SigIndex]; in parseLinkingSectionSymtab()
756 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
778 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab() local
781 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
783 Info.Name = Import.Field; in parseLinkingSectionSymtab()
785 GlobalType = &Import.Global; in parseLinkingSectionSymtab()
786 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DIPO.h56 Import, ///< Import information from summary. enumerator
/freebsd/contrib/tcsh/
H A DFREEBSD-upgrade10 cvs import -m "Import of tcsh-6.15.00" \
/freebsd/sys/contrib/openzfs/etc/systemd/system/
H A Dzfs-import-scan.service.in2 Description=Import ZFS pools by device scanning
H A Dzfs-import-cache.service.in2 Description=Import ZFS pools by cache file
/freebsd/contrib/bsnmp/
H A DFREEBSD-upgrade6 Import should be done by:
/freebsd/lib/libz/
H A DFREEBSD-upgrade8 2) Import onto the vendor area.
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h53 if (auto *Import = D->getAttr<DLLImportAttr>()) in getDLLAttr() local
54 return Import; in getDLLAttr()
/freebsd/crypto/krb5/src/kadmin/dbutil/
H A Dimport_err.et7 error_code IMPORT_FAILED, "Import of dump failed"

12345