Home
last modified time | relevance | path

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

12345

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DASTImporter.h176 To = Import(From); in importInto()
193 QualType Import(QualType FromT);
211 Attr *Import(const Attr *FromAttr);
223 Decl *Import(Decl *FromD);
224 Decl *Import(const Decl *FromD) { in Import() function
247 Expr *Import(Expr *FromE);
256 Stmt *Import(Stmt *FromS);
282 TemplateName Import(TemplateName From);
300 SourceRange Import(SourceRange FromRange);
325 Selector Import(Selector FromSel);
[all …]
H A DASTContext.h839 ImportDecl *Import = nullptr; variable
849 explicit import_iterator(ImportDecl *Import) : Import(Import) {} in import_iterator() argument
851 reference operator*() const { return Import; }
852 pointer operator->() const { return Import; }
855 Import = ASTContext::getNextLocalImport(Import);
866 return X.Import == Y.Import;
870 return X.Import != Y.Import;
959 void addedLocalImportDecl(ImportDecl *Import);
961 static ImportDecl *getNextLocalImport(ImportDecl *Import) { in getNextLocalImport() argument
962 return Import->NextLocalImport; in getNextLocalImport()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp325 void MappingTraits<WasmYAML::Import>::mapping(IO &IO, in mapping()
326 WasmYAML::Import &Import) { in mapping() argument
327 IO.mapRequired("Module", Import.Module); in mapping()
328 IO.mapRequired("Field", Import.Field); in mapping()
329 IO.mapRequired("Kind", Import.Kind); in mapping()
330 if (Import.Kind == wasm::WASM_EXTERNAL_FUNCTION) { in mapping()
331 IO.mapRequired("SigIndex", Import.SigIndex); in mapping()
335 } else if (Import.Kind == wasm::WASM_EXTERNAL_EVENT) { in mapping()
338 } else if (Import.Kind == wasm::WASM_EXTERNAL_TABLE) { in mapping()
339 IO.mapRequired("Table", Import.TableImport); in mapping()
[all …]
/freebsd-12.1/contrib/llvm/lib/MC/
H A DWasmObjectWriter.cpp745 writeString(Import.Module); in writeImportSection()
746 writeString(Import.Field); in writeImportSection()
747 W.OS << char(Import.Kind); in writeImportSection()
749 switch (Import.Kind) { in writeImportSection()
754 W.OS << char(Import.Global.Type); in writeImportSection()
1209 wasm::WasmImport Import; in writeObject() local
1214 Imports.push_back(Import); in writeObject()
1220 wasm::WasmImport Import; in writeObject() local
1225 Imports.push_back(Import); in writeObject()
1231 wasm::WasmImport Import; in writeObject() local
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTImporter.cpp142 To = Import(From); in importInto()
151 To = Import(From); in importInto()
207 T To = Importer.Import(From); in import()
7732 return Import(FromAttr); in Import_New()
7750 Decl *ToD = Import(FromD); in Import_New()
7849 Expr *ToE = Import(FromE); in Import_New()
7862 Stmt *ToS = Import(FromS); in Import_New()
8159 return SourceRange(Import(FromRange.getBegin()), Import(FromRange.getEnd())); in Import()
8254 Import(From->getLParenLoc()), ToExpr, Import(From->getRParenLoc())); in Import()
8263 Import(From->getLParenLoc()), ToExpr, Import(From->getRParenLoc())); in Import()
[all …]
H A DExternalASTMerger.cpp60 Source<DeclarationName> SourceName = ReverseImporter.Import(Name); in LookupSameContext()
360 if (!Importer->Import(Spec)) in importSpecializations()
390 DeclarationName FromName = Reverse.Import(Name); in FindExternalVisibleDeclsByName()
405 NamedDecl *ND = cast_or_null<NamedDecl>(Importer->Import(LookupRes)); in FindExternalVisibleDeclsByName()
427 Decl *ImportedDecl = Forward.Import(const_cast<Decl *>(SourceDecl)); in FindExternalLexicalDecls()
/freebsd-12.1/contrib/llvm/tools/llvm-link/
H A Dllvm-link.cpp227 for (const auto &Import : Imports) { in importFunctions() local
229 size_t Idx = Import.find(':'); in importFunctions()
231 errs() << "Import parameter bad format: " << Import << "\n"; in importFunctions()
234 std::string FunctionName = Import.substr(0, Idx); in importFunctions()
235 std::string FileName = Import.substr(Idx + 1, std::string::npos); in importFunctions()
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h83 struct Import { struct
244 std::vector<Import> Imports;
359 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Import) in LLVM_YAML_IS_SEQUENCE_VECTOR()
391 template <> struct MappingTraits<WasmYAML::Import> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
392 static void mapping(IO &IO, WasmYAML::Import &Import); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTImporter.cpp61 return minion_sp->Import(type); in CopyType()
102 clang::Decl *result = minion_sp->Import(decl); in CopyDecl()
396 bool ClangASTImporter::Import(const CompilerType &type) { in Import() function in ClangASTImporter
442 return Import(CompilerType(type.GetTypeSystem(), in Import()
449 return Import(CompilerType(type.GetTypeSystem(), in Import()
455 return Import(CompilerType(type.GetTypeSystem(), in Import()
461 return Import(CompilerType( in Import()
475 if (Import(compiler_type)) { in CompleteType()
629 minion_sp->Import(origin_child_decl); in CompleteAndFetchChildren()
654 minion_sp->Import(origin_child_decl); in CompleteAndFetchChildren()
[all …]
/freebsd-12.1/contrib/llvm/lib/Object/
H A DWasmObjectFile.cpp511 Info.Name = Import.Field; in parseLinkingSectionSymtab()
513 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
514 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
540 Info.Name = Import.Field; in parseLinkingSectionSymtab()
541 GlobalType = &Import.Global; in parseLinkingSectionSymtab()
542 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
543 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab()
600 Info.Name = Import.Field; in parseLinkingSectionSymtab()
601 EventType = &Import.Event; in parseLinkingSectionSymtab()
603 Info.ImportName = Import.Field; in parseLinkingSectionSymtab()
[all …]
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1107 auto Import = ImportGUIDs.count(GUID); in importFunctions() local
1108 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing function " in importFunctions()
1111 if (Import) { in importFunctions()
1129 auto Import = ImportGUIDs.count(GUID); in importFunctions() local
1130 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing global " in importFunctions()
1133 if (Import) { in importFunctions()
1143 auto Import = ImportGUIDs.count(GUID); in importFunctions() local
1144 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing alias " in importFunctions()
1147 if (Import) { in importFunctions()
/freebsd-12.1/contrib/diff/
H A DFREEBSD-upgrade2 Import of GNU diff 2.8.7
/freebsd-12.1/contrib/tcsh/
H A DFREEBSD-upgrade12 cvs import -m "Import of tcsh-6.15.00" \
/freebsd-12.1/contrib/ngatm/
H A DFREEBSD-upgrade7 Import should be done by:
/freebsd-12.1/contrib/bsnmp/
H A DFREEBSD-upgrade8 Import should be done by:
/freebsd-12.1/lib/libz/
H A DFREEBSD-upgrade10 2) Import onto the vendor area.
/freebsd-12.1/contrib/one-true-awk/
H A DFREEBSD-upgrade3 Import of the 2005/04/24 version of the "one true awk", as described
/freebsd-12.1/sys/contrib/ngatm/
H A DFREEBSD-upgrade8 Import should be done by:
/freebsd-12.1/contrib/llvm/tools/lld/docs/
H A DWebAssembly.rst40 Import the function table from the environment.
78 Import memory from the environment.
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/
H A DIPO.h226 Import, ///< Import information from summary. enumerator
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSemaInternal.h97 if (auto *Import = D->getAttr<DLLImportAttr>()) in getDLLAttr() local
98 return Import; in getDLLAttr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DASTMerge.cpp69 Decl *ToD = Importer.Import(D); in ExecuteAction()
/freebsd-12.1/contrib/googletest/googletest/codegear/
H A Dgtest.groupproj53 …<Import Condition="Exists('$(MSBuildBinPath)\Borland.Group.Targets')" Project="$(MSBuildBinPath)\B…
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp1023 DeclFromParser<D> Import(ClangASTSource &source);
1036 DeclFromParser<D> DeclFromUser<D>::Import(ClangASTSource &source) { in Import() function in DeclFromUser
1450 origin_property_decl.Import(source)); in FindObjCPropertyAndIvarDeclsWithOrigin()
1468 origin_ivar_decl.Import(source)); in FindObjCPropertyAndIvarDeclsWithOrigin()
1653 DeclFromParser<D> parser_decl(user_decl.Import(source)); in ImportOffsetMap()
1969 return merger.ImporterForOrigin(from_context).Import(type); in CopyTypeWithMerger()
1982 return m_merger_up->ImporterForOrigin(from_context).Import(src_decl); in CopyDecl()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DDeclNodes.td98 def Import : Decl;

12345