Home
last modified time | relevance | path

Searched refs:Import (Results 1 – 25 of 108) 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.h921 ImportDecl *Import = nullptr; variable
931 explicit import_iterator(ImportDecl *Import) : Import(Import) {} in import_iterator() argument
933 reference operator*() const { return Import; }
934 pointer operator->() const { return Import; }
937 Import = ASTContext::getNextLocalImport(Import);
948 return X.Import == Y.Import;
952 return X.Import != Y.Import;
1044 void addedLocalImportDecl(ImportDecl *Import);
1046 static ImportDecl *getNextLocalImport(ImportDecl *Import) { in getNextLocalImport() argument
1047 return Import->getNextLocalImport(); in getNextLocalImport()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp856 for (const wasm::WasmImport &Import : Imports) { in writeImportSection() local
857 writeString(Import.Module); in writeImportSection()
858 writeString(Import.Field); in writeImportSection()
859 W->OS << char(Import.Kind); in writeImportSection()
861 switch (Import.Kind) { in writeImportSection()
863 encodeULEB128(Import.SigIndex, W->OS); in writeImportSection()
866 W->OS << char(Import.Global.Type); in writeImportSection()
867 W->OS << char(Import.Global.Mutable ? 1 : 0); in writeImportSection()
870 encodeULEB128(Import.Memory.Flags, W->OS); in writeImportSection()
874 W->OS << char(Import in writeImportSection()
1367 wasm::WasmImport Import; prepareImports() local
1379 wasm::WasmImport Import; prepareImports() local
1391 wasm::WasmImport Import; prepareImports() local
1403 wasm::WasmImport Import; prepareImports() local
1419 wasm::WasmImport Import; prepareImports() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp393 void MappingTraits<WasmYAML::Import>::mapping(IO &IO, in mapping()
394 WasmYAML::Import &Import) { in mapping() argument
395 IO.mapRequired("Module", Import.Module); in mapping()
396 IO.mapRequired("Field", Import.Field); in mapping()
397 IO.mapRequired("Kind", Import.Kind); in mapping()
398 if (Import.Kind == wasm::WASM_EXTERNAL_FUNCTION || in mapping()
399 Import.Kind == wasm::WASM_EXTERNAL_TAG) { in mapping()
400 IO.mapRequired("SigIndex", Import.SigIndex); in mapping()
401 } else if (Import.Kind == wasm::WASM_EXTERNAL_GLOBAL) { in mapping()
402 IO.mapRequired("GlobalType", Import.GlobalImport.Type); 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/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp48 for (const serialization::ModuleFile *Import : MF->Imports) in optimizeHeaderSearchOpts() local
49 if (!Visited.contains(Import)) in optimizeHeaderSearchOpts()
50 VisitMF(Import); in optimizeHeaderSearchOpts()
74 for (const serialization::ModuleFile *Import : MF->Imports) in optimizeHeaderSearchOpts() local
75 if (!Visited.contains(Import)) in optimizeHeaderSearchOpts()
76 VisitMF(Import); in optimizeHeaderSearchOpts()
682 for (const Module *Import : M->Imports) in addModulePrebuiltDeps() local
683 if (Import->getTopLevelModule() != M->getTopLevelModule()) in addModulePrebuiltDeps()
684 if (MDC.isPrebuiltModule(Import->getTopLevelModule())) in addModulePrebuiltDeps()
685 if (SeenSubmodules.insert(Import->getTopLevelModule()).second) in addModulePrebuiltDeps()
[all …]
/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/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()
436 bool ClangASTImporter::Import(const CompilerType &type) { in Import() function in ClangASTImporter
480 return Import(CompilerType(type.GetTypeSystem(), in Import()
487 return Import(CompilerType(type.GetTypeSystem(), in Import()
493 return Import(CompilerType(type.GetTypeSystem(), in Import()
499 return Import(CompilerType( in Import()
513 if (Import(compiler_type)) { in CompleteType()
561 DeclFromParser<D> parser_decl(user_decl.Import(dest_ctx, importer)); in ImportOffsetMap()
881 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()
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);
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.h89 struct Import { struct
90 Import() {} in Import() argument
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/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()
939 IdentifierInfo *ToFieldName = Importer.Import(D.getFieldName()); in import()
1667 IdentifierInfo *ToName = Importer.Import(T->getIdentifier()); in VisitDependentTemplateSpecializationType()
1684 IdentifierInfo *Name = Importer.Import(T->getIdentifier()); in VisitDependentNameType()
1750 IdentifierInfo *ToIdentifier = Importer.Import(T->getMacroIdentifier()); in VisitMacroQualifiedType()
2202 if (ExpectedDecl ToTypedefOrErr = Importer.Import(FromTypedef)) in setTypedefNameForAnonDecl()
2675 IdentifierInfo *ToIdentifier = Importer.Import(D->getIdentifier()); in VisitNamespaceAliasDecl()
5321 Importer.Import(D->getInstantiatedFromUsingDecl()); in VisitUsingPackDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp493 ImportDecl *Import = ImportDecl::Create(Context, CurContext, ModuleLoc, in ActOnModuleDecl() local
495 CurContext->addDecl(Import); in ActOnModuleDecl()
499 Context.addModuleInitializer(ModuleScopes.back().Module, Import); in ActOnModuleDecl()
505 return ConvertDeclToDeclGroup(Import); in ActOnModuleDecl()
690 ImportDecl *Import = ImportDecl::Create(Context, CurContext, StartLoc, in ActOnModuleImport() local
692 CurContext->addDecl(Import); in ActOnModuleImport()
697 Context.addModuleInitializer(ModuleScopes.back().Module, Import); in ActOnModuleImport()
708 if (ExportLoc.isValid() || getEnclosingExportDecl(Import)) in ActOnModuleImport()
719 return Import; in ActOnModuleImport()
/freebsd/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp343 for (const auto &Import : Imports) { in importFunctions() local
345 size_t Idx = Import.find(':'); in importFunctions()
347 errs() << "Import parameter bad format: " << Import << "\n"; in importFunctions()
350 std::string FunctionName = Import.substr(0, Idx); in importFunctions()
351 std::string FileName = Import.substr(Idx + 1, std::string::npos); in importFunctions()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp738 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab() local
741 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
743 Info.Name = Import.Field; in parseLinkingSectionSymtab()
745 Signature = &Signatures[Import.SigIndex]; in parseLinkingSectionSymtab()
746 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
768 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab() local
771 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
773 Info.Name = Import.Field; in parseLinkingSectionSymtab()
775 GlobalType = &Import.Global; in parseLinkingSectionSymtab()
776 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DIPO.h54 Import, ///< Import information from summary.
58 Import, ///< Import information from summary. global() enumerator
/freebsd/contrib/diff/
H A DFREEBSD-upgrade1 Import of GNU diff 2.8.7
/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/Tooling/Inclusions/
H A DHeaderIncludes.h48 enum class IncludeDirective { Include, Import }; enumerator

12345