Home
last modified time | relevance | path

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

12345

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h309 auto ToOrErr = Import(From); in importInto()
317 Import(ExprWithCleanups::CleanupObject From);
329 llvm::Expected<QualType> Import(QualType FromT);
343 llvm::Expected<Attr *> Import(const Attr *FromAttr);
350 llvm::Expected<Decl *> Import(Decl *FromD);
352 return Import(const_cast<Decl *>(FromD)); in Import()
356 Import(const InheritedConstructor &From);
393 llvm::Expected<Expr *> Import(Expr *FromE);
400 llvm::Expected<Stmt *> Import(Stmt *FromS);
415 Import(NestedNameSpecifierLoc FromNNS);
[all …]
H A DASTContext.h892 ImportDecl *Import = nullptr; variable
902 explicit import_iterator(ImportDecl *Import) : Import(Import) {} in import_iterator() argument
904 reference operator*() const { return Import; }
905 pointer operator->() const { return Import; }
908 Import = ASTContext::getNextLocalImport(Import);
919 return X.Import == Y.Import;
923 return X.Import != Y.Import;
1015 void addedLocalImportDecl(ImportDecl *Import);
1017 static ImportDecl *getNextLocalImport(ImportDecl *Import) { in getNextLocalImport() argument
1018 return Import->getNextLocalImport(); in getNextLocalImport()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp862 writeString(Import.Module); in writeImportSection()
863 writeString(Import.Field); in writeImportSection()
864 W->OS << char(Import.Kind); in writeImportSection()
866 switch (Import.Kind) { in writeImportSection()
1372 wasm::WasmImport Import; in prepareImports() local
1377 Imports.push_back(Import); in prepareImports()
1384 wasm::WasmImport Import; in prepareImports() local
1396 wasm::WasmImport Import; in prepareImports() local
1408 wasm::WasmImport Import; in prepareImports() local
1424 wasm::WasmImport Import; in prepareImports() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp390 void MappingTraits<WasmYAML::Import>::mapping(IO &IO, in mapping()
391 WasmYAML::Import &Import) { in mapping() argument
392 IO.mapRequired("Module", Import.Module); in mapping()
393 IO.mapRequired("Field", Import.Field); in mapping()
394 IO.mapRequired("Kind", Import.Kind); in mapping()
395 if (Import.Kind == wasm::WASM_EXTERNAL_FUNCTION || in mapping()
396 Import.Kind == wasm::WASM_EXTERNAL_TAG) { in mapping()
397 IO.mapRequired("SigIndex", Import.SigIndex); in mapping()
401 } else if (Import.Kind == wasm::WASM_EXTERNAL_TABLE) { in mapping()
402 IO.mapRequired("Table", Import.TableImport); in mapping()
[all …]
H A DWasmEmitter.cpp387 for (const WasmYAML::Import &Import : Section.Imports) { in writeSectionContent() local
388 writeStringRef(Import.Module, OS); in writeSectionContent()
389 writeStringRef(Import.Field, OS); in writeSectionContent()
390 writeUint8(OS, Import.Kind); in writeSectionContent()
391 switch (Import.Kind) { in writeSectionContent()
393 encodeULEB128(Import.SigIndex, OS); in writeSectionContent()
397 writeUint8(OS, Import.GlobalImport.Type); in writeSectionContent()
398 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent()
403 encodeULEB128(Import.SigIndex, OS); in writeSectionContent()
407 writeLimits(Import.Memory, OS); in writeSectionContent()
[all …]
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp45 for (const serialization::ModuleFile *Import : MF->Imports) in optimizeHeaderSearchOpts() local
46 if (!Visited.contains(Import)) in optimizeHeaderSearchOpts()
47 VisitMF(Import); in optimizeHeaderSearchOpts()
606 for (const Module *Import : M->Imports) in addModulePrebuiltDeps() local
607 if (Import->getTopLevelModule() != M->getTopLevelModule()) in addModulePrebuiltDeps()
608 if (MDC.isPrebuiltModule(Import->getTopLevelModule())) in addModulePrebuiltDeps()
609 if (SeenSubmodules.insert(Import->getTopLevelModule()).second) in addModulePrebuiltDeps()
626 for (const Module *Import : M->Imports) { in addModuleDep() local
627 if (Import->getTopLevelModule() != M->getTopLevelModule() && in addModuleDep()
628 !MDC.isPrebuiltModule(Import)) { in addModuleDep()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp78 llvm::Expected<clang::Decl *> result = delegate_sp->Import(decl); in CopyDecl()
433 bool ClangASTImporter::Import(const CompilerType &type) { in Import() function in ClangASTImporter
477 return Import(CompilerType(type.GetTypeSystem(), in Import()
484 return Import(CompilerType(type.GetTypeSystem(), in Import()
490 return Import(CompilerType(type.GetTypeSystem(), in Import()
496 return Import(CompilerType( in Import()
510 if (Import(compiler_type)) { in CompleteType()
639 delegate_sp->Import(origin_child_decl); in CompleteAndFetchChildren()
669 delegate_sp->Import(origin_child_decl); in CompleteAndFetchChildren()
815 std::optional<Decl *> D = m_std_handler->Import(From); in ImportImpl()
[all …]
H A DCxxModuleHandler.cpp237 llvm::Expected<QualType> type = m_importer->Import(arg.getAsType()); in tryInstantiateStdTemplate()
249 m_importer->Import(arg.getIntegralType()); in tryInstantiateStdTemplate()
292 std::optional<Decl *> CxxModuleHandler::Import(Decl *d) { in Import() function in CxxModuleHandler
H A DCxxModuleHandler.h57 std::optional<clang::Decl *> Import(clang::Decl *d);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h89 struct Import { struct
90 Import() {} in Import() function
304 std::vector<Import> Imports;
429 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Import) in LLVM_YAML_IS_SEQUENCE_VECTOR()
464 template <> struct MappingTraits<WasmYAML::Import> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
465 static void mapping(IO &IO, WasmYAML::Import &Import); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp403 ImportDecl *Import = ImportDecl::Create(Context, CurContext, ModuleLoc, in ActOnModuleDecl() local
405 CurContext->addDecl(Import); in ActOnModuleDecl()
409 Context.addModuleInitializer(ModuleScopes.back().Module, Import); in ActOnModuleDecl()
415 return ConvertDeclToDeclGroup(Import); in ActOnModuleDecl()
596 ImportDecl *Import = ImportDecl::Create(Context, CurContext, StartLoc, in ActOnModuleImport() local
598 CurContext->addDecl(Import); in ActOnModuleImport()
603 Context.addModuleInitializer(ModuleScopes.back().Module, Import); in ActOnModuleImport()
614 if (ExportLoc.isValid() || getEnclosingExportDecl(Import)) in ActOnModuleImport()
625 return Import; in ActOnModuleImport()
/freebsd-14.2/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()
452 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.cpp192 auto ToOrErr = Importer.Import(From); in importInto()
204 auto ToOrErr = Importer.Import(From); in import()
218 return Importer.Import(From); in import()
8321 IdentifierInfo *ToII = Importer.Import(FromII); in VisitCXXPseudoDestructorExpr()
8948 if (Expected<Expr *> R = Import(CLE)) in Import()
8996 ExpectedType TOrErr = Import(FromTSI->getType()); in Import()
9096 Importer.Import(FromAttr->getScopeName()); in importAttr()
9314 auto ToAttrOrErr = Import(FromAttr); in ImportAttrs()
9727 if (auto ToOrErr = Import(I)) in Import()
10019 ExpectedDecl ToOrErr = Import(From); in ImportDefinition()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp657 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
659 Info.Name = Import.Field; in parseLinkingSectionSymtab()
662 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
687 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
689 Info.Name = Import.Field; in parseLinkingSectionSymtab()
691 GlobalType = &Import.Global; in parseLinkingSectionSymtab()
717 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
719 Info.Name = Import.Field; in parseLinkingSectionSymtab()
721 TableType = &Import.Table; in parseLinkingSectionSymtab()
784 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp331 for (const auto &Import : Imports) { in importFunctions() local
333 size_t Idx = Import.find(':'); in importFunctions()
335 errs() << "Import parameter bad format: " << Import << "\n"; in importFunctions()
338 std::string FunctionName = Import.substr(0, Idx); in importFunctions()
339 std::string FileName = Import.substr(Idx + 1, std::string::npos); in importFunctions()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DIPO.h54 Import, ///< Import information from summary. enumerator
/freebsd-14.2/contrib/diff/
H A DFREEBSD-upgrade2 Import of GNU diff 2.8.7
/freebsd-14.2/contrib/tcsh/
H A DFREEBSD-upgrade12 cvs import -m "Import of tcsh-6.15.00" \
/freebsd-14.2/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-14.2/contrib/bsnmp/
H A DFREEBSD-upgrade8 Import should be done by:
/freebsd-14.2/lib/libz/
H A DFREEBSD-upgrade8 2) Import onto the vendor area.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1638 auto Import = ImportGUIDs.count(GUID); in importFunctions() local
1639 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing function " in importFunctions()
1642 if (Import) { in importFunctions()
1660 auto Import = ImportGUIDs.count(GUID); in importFunctions() local
1661 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing global " in importFunctions()
1664 if (Import) { in importFunctions()
1674 auto Import = ImportGUIDs.count(GUID); in importFunctions() local
1675 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing alias " in importFunctions()
1678 if (Import) { in importFunctions()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/
H A DHeaderIncludes.h48 enum class IncludeDirective { Include, Import }; enumerator

12345