Searched refs:Import (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h101 // Import call.
340 /// \brief Import the given object, returns the result.
342 /// \param To Import the object into this variable.
347 auto ToOrErr = Import(From);
353 /// Import cleanup objects owned by ExprWithCleanup.
355 Import(ExprWithCleanups::CleanupObject From);
357 /// Import the given type from the "from" context into the "to"
361 llvm::Expected<QualType> Import(QualType FromT);
363 /// Import the given type source information from the
368 llvm::Expected<TypeSourceInfo *> Import(TypeSourceInf
383 llvm::Expected<const Decl *> Import(const Decl *FromD) { function in class:clang::ASTImporter
[all...]
H A DASTContext.h777 ImportDecl *Import = nullptr; member in class:clang::ASTContext::import_iterator
787 explicit import_iterator(ImportDecl *Import) : Import(Import) {} argument
789 reference operator*() const { return Import; }
790 pointer operator->() const { return Import; }
793 Import = ASTContext::getNextLocalImport(Import);
804 return X.Import == Y.Import;
894 getNextLocalImport(ImportDecl *Import) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DCxxModuleHandler.h56 llvm::Optional<clang::Decl *> Import(clang::Decl *d);
H A DCxxModuleHandler.cpp223 // Import the foreign template arguments.
230 llvm::Expected<QualType> type = m_importer->Import(arg.getAsType());
241 m_importer->Import(arg.getIntegralType());
284 llvm::Optional<Decl *> CxxModuleHandler::Import(Decl *d) { function in class:CxxModuleHandler
H A DClangASTImporter.cpp50 llvm::Expected<QualType> ret_or_error = delegate_sp->Import(src_qual_type);
78 llvm::Expected<clang::Decl *> result = delegate_sp->Import(decl);
426 bool ClangASTImporter::Import(const CompilerType &type) { function in class:ClangASTImporter
472 return Import(CompilerType(type.GetTypeSystem(),
479 return Import(CompilerType(type.GetTypeSystem(),
485 return Import(CompilerType(type.GetTypeSystem(),
491 return Import(CompilerType(
505 if (Import(compiler_type)) {
637 delegate_sp->Import(origin_child_decl);
667 delegate_sp->Import(origin_child_dec
[all...]
H A DClangASTImporter.h83 bool Import(const CompilerType &type);
H A DClangASTSource.cpp742 DeclFromParser<D> Import(ClangASTSource &source);
754 DeclFromParser<D> DeclFromUser<D>::Import(ClangASTSource &source) { function in class:DeclFromUser
1224 origin_property_decl.Import(source));
1239 origin_ivar_decl.Import(source));
1434 DeclFromParser<D> parser_decl(user_decl.Import(source));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp744 for (const wasm::WasmImport &Import : Imports) {
745 writeString(Import.Module);
746 writeString(Import.Field);
747 W.OS << char(Import.Kind);
749 switch (Import.Kind) {
751 encodeULEB128(Import.SigIndex, W.OS);
754 W.OS << char(Import.Global.Type);
755 W.OS << char(Import.Global.Mutable ? 1 : 0);
758 encodeULEB128(Import.Memory.Flags, W.OS);
762 W.OS << char(Import
1237 wasm::WasmImport Import; local
1249 wasm::WasmImport Import; local
1261 wasm::WasmImport Import; local
1278 wasm::WasmImport Import; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp178 for (const Module *Import : M->Imports) {
179 if (Import->getTopLevelModule() != M->getTopLevelModule()) {
180 if (AddedModules.insert(Import->getTopLevelModule()).second)
182 {std::string(Import->getTopLevelModuleName()),
184 handleTopLevelModule(Import->getTopLevelModule());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp378 void MappingTraits<WasmYAML::Import>::mapping(IO &IO, argument
379 WasmYAML::Import &Import) {
380 IO.mapRequired("Module", Import.Module);
381 IO.mapRequired("Field", Import.Field);
382 IO.mapRequired("Kind", Import.Kind);
383 if (Import.Kind == wasm::WASM_EXTERNAL_FUNCTION) {
384 IO.mapRequired("SigIndex", Import.SigIndex);
385 } else if (Import.Kind == wasm::WASM_EXTERNAL_GLOBAL) {
386 IO.mapRequired("GlobalType", Import
[all...]
H A DWasmEmitter.cpp346 for (const WasmYAML::Import &Import : Section.Imports) {
347 writeStringRef(Import.Module, OS);
348 writeStringRef(Import.Field, OS);
349 writeUint8(OS, Import.Kind);
350 switch (Import.Kind) {
352 encodeULEB128(Import.SigIndex, OS);
356 writeUint8(OS, Import.GlobalImport.Type);
357 writeUint8(OS, Import.GlobalImport.Mutable);
361 writeUint32(OS, Import
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DIPO.h234 Import, ///< Import information from summary. member in class:llvm::PassSummaryAction
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp278 /// Import any functions requested via the -import option.
294 for (const auto &Import : Imports) {
296 size_t Idx = Import.find(':');
298 errs() << "Import parameter bad format: " << Import << "\n";
301 std::string FunctionName = Import.substr(0, Idx);
302 std::string FileName = Import.substr(Idx + 1, std::string::npos);
449 // Import any functions requested via -import
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp59 auto SourceNameOrErr = ReverseImporter.Import(Name);
175 auto DeclOrErr = OtherImporter.Import(Persistent);
457 auto ImportedSpecOrError = Importer->Import(Spec);
492 auto FromNameOrErr = Reverse.Import(Name);
512 auto NDOrErr = Importer->Import(LookupRes);
535 auto ImportedDeclOrErr = Forward.Import(SourceDecl);
H A DASTImporter.cpp154 auto ToOrErr = Importer.Import(From);
164 auto ToOrErr = Importer.Import(From);
178 return Importer.Import(From);
181 // Import an Optional<T> by importing the contained T, if any.
405 /// Import the default subset of the definition, which might be
409 /// Import everything.
411 /// Import only the bare bones needed to establish a valid
662 // Import every item from a container structure into an output container.
736 // Import template arguments.
917 IdentifierInfo *ToFieldName = Importer.Import(
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h83 struct Import { struct in namespace:llvm::WasmYAML
281 std::vector<Import> Imports;
406 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Import)
440 template <> struct MappingTraits<WasmYAML::Import> {
441 static void mapping(IO &IO, WasmYAML::Import &Import);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DASTMerge.cpp68 llvm::Expected<Decl *> ToDOrError = Importer.Import(D);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp352 // Import-from-implementation is valid in the Modules TS. FIXME: Should we
354 // FIXME: Import of a module from an implementation partition of the same
384 ImportDecl *Import = ImportDecl::Create(Context, CurContext, StartLoc, local
386 CurContext->addDecl(Import);
391 Context.addModuleInitializer(ModuleScopes.back().Module, Import);
395 if (ExportLoc.isValid() || getEnclosingExportDecl(Import))
401 return Import;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp523 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; local
526 Info.ImportName = Import.Field;
528 Info.Name = Import.Field;
530 Signature = &Signatures[Import.SigIndex];
531 if (!Import.Module.empty()) {
532 Info.ImportModule = Import.Module;
555 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; local
558 Info.ImportName = Import.Field;
560 Info.Name = Import.Field;
562 GlobalType = &Import
619 wasm::WasmImport &Import = *ImportedEvents[Info.ElementIndex]; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1 //===- FunctionImport.cpp - ThinLTO Summary-based Function Import ---------===//
146 cl::desc("Import all external functions in index."));
714 LLVM_DEBUG(dbgs() << "Import/Export lists for " << ImportLists.size()
1168 auto Import = ImportGUIDs.count(GUID); local
1169 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing function "
1172 if (Import) {
1190 auto Import = ImportGUIDs.count(GUID); local
1191 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing global "
1194 if (Import) {
1204 auto Import local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h57 if (auto *Import = D->getAttr<DLLImportAttr>())
58 return Import;
/freebsd-13-stable/contrib/cortex-strings/src/arm/
H A Dmemchr.S45 @ Import endianness fix from local git ea786f1b
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h599 auto mod = Import(s.c_str());
607 static llvm::Expected<PythonModule> Import(const llvm::Twine &name);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.cpp406 case Decl::Import:
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp479 Kind = InclusionDirective::Import;

Completed in 163 milliseconds

12