| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTImporter.h | 336 auto ToOrErr = Import(From); in importInto() 344 Import(ExprWithCleanups::CleanupObject From); 356 llvm::Expected<QualType> Import(QualType FromT); 370 llvm::Expected<Attr *> Import(const Attr *FromAttr); 377 llvm::Expected<Decl *> Import(Decl *FromD); 379 return Import(const_cast<Decl *>(FromD)); in Import() 417 llvm::Expected<Expr *> Import(Expr *FromE); 424 llvm::Expected<Stmt *> Import(Stmt *FromS); 439 Import(NestedNameSpecifierLoc FromNNS); 471 IdentifierInfo *Import(const IdentifierInfo *FromId); [all …]
|
| H A D | ASTContext.h | 860 ImportDecl *Import = nullptr; variable 870 explicit import_iterator(ImportDecl *Import) : Import(Import) {} in import_iterator() argument 872 reference operator*() const { return Import; } 873 pointer operator->() const { return Import; } 876 Import = ASTContext::getNextLocalImport(Import); 887 return X.Import == Y.Import; 891 return X.Import != Y.Import; 983 void addedLocalImportDecl(ImportDecl *Import); 985 static ImportDecl *getNextLocalImport(ImportDecl *Import) { in getNextLocalImport() argument 986 return Import->getNextLocalImport(); in getNextLocalImport()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
| H A D | ModuleDepCollector.cpp | 248 for (const Module *Import : M->Imports) in addDirectPrebuiltModuleDeps() local 249 if (Import->getTopLevelModule() != M->getTopLevelModule()) in addDirectPrebuiltModuleDeps() 250 if (MDC.isPrebuiltModule(Import)) in addDirectPrebuiltModuleDeps() 251 MD.PrebuiltModuleDeps.emplace_back(Import); in addDirectPrebuiltModuleDeps() 266 for (const Module *Import : M->Imports) { in addModuleDep() local 267 if (Import->getTopLevelModule() != M->getTopLevelModule() && in addModuleDep() 268 !MDC.isPrebuiltModule(Import)) { in addModuleDep() 269 ModuleID ImportID = handleTopLevelModule(Import->getTopLevelModule()); in addModuleDep() 270 if (AddedModules.insert(Import->getTopLevelModule()).second) in addModuleDep()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WasmObjectWriter.cpp | 806 writeString(Import.Module); in writeImportSection() 807 writeString(Import.Field); in writeImportSection() 808 W->OS << char(Import.Kind); in writeImportSection() 810 switch (Import.Kind) { in writeImportSection() 1315 wasm::WasmImport Import; in prepareImports() local 1320 Imports.push_back(Import); in prepareImports() 1327 wasm::WasmImport Import; in prepareImports() local 1339 wasm::WasmImport Import; in prepareImports() local 1352 wasm::WasmImport Import; in prepareImports() local 1368 wasm::WasmImport Import; in prepareImports() local [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | WasmYAML.cpp | 389 void MappingTraits<WasmYAML::Import>::mapping(IO &IO, in mapping() 390 WasmYAML::Import &Import) { in mapping() argument 391 IO.mapRequired("Module", Import.Module); in mapping() 392 IO.mapRequired("Field", Import.Field); in mapping() 393 IO.mapRequired("Kind", Import.Kind); in mapping() 394 if (Import.Kind == wasm::WASM_EXTERNAL_FUNCTION) { in mapping() 395 IO.mapRequired("SigIndex", Import.SigIndex); in mapping() 399 } else if (Import.Kind == wasm::WASM_EXTERNAL_TAG) { in mapping() 402 } else if (Import.Kind == wasm::WASM_EXTERNAL_TABLE) { in mapping() 403 IO.mapRequired("Table", Import.TableImport); in mapping() [all …]
|
| H A D | WasmEmitter.cpp | 374 for (const WasmYAML::Import &Import : Section.Imports) { in writeSectionContent() local 375 writeStringRef(Import.Module, OS); in writeSectionContent() 376 writeStringRef(Import.Field, OS); in writeSectionContent() 377 writeUint8(OS, Import.Kind); in writeSectionContent() 378 switch (Import.Kind) { in writeSectionContent() 380 encodeULEB128(Import.SigIndex, OS); in writeSectionContent() 384 writeUint8(OS, Import.GlobalImport.Type); in writeSectionContent() 385 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent() 389 writeUint32(OS, Import.TagImport.Attribute); in writeSectionContent() 390 writeUint32(OS, Import.TagImport.SigIndex); in writeSectionContent() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTImporter.cpp | 432 bool ClangASTImporter::Import(const CompilerType &type) { in Import() function in ClangASTImporter 476 return Import(CompilerType(type.GetTypeSystem(), in Import() 483 return Import(CompilerType(type.GetTypeSystem(), in Import() 489 return Import(CompilerType(type.GetTypeSystem(), in Import() 495 return Import(CompilerType( in Import() 509 if (Import(compiler_type)) { in CompleteType() 638 delegate_sp->Import(origin_child_decl); in CompleteAndFetchChildren() 668 delegate_sp->Import(origin_child_decl); in CompleteAndFetchChildren() 814 llvm::Optional<Decl *> D = m_std_handler->Import(From); in ImportImpl() 907 llvm::Expected<Decl *> imported = Import(record_decl); in ImportImpl() [all …]
|
| H A D | CxxModuleHandler.cpp | 235 llvm::Expected<QualType> type = m_importer->Import(arg.getAsType()); in tryInstantiateStdTemplate() 246 m_importer->Import(arg.getIntegralType()); in tryInstantiateStdTemplate() 289 llvm::Optional<Decl *> CxxModuleHandler::Import(Decl *d) { in Import() function in CxxModuleHandler
|
| H A D | CxxModuleHandler.h | 56 llvm::Optional<clang::Decl *> Import(clang::Decl *d);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 558 Info.Name = Import.Field; in parseLinkingSectionSymtab() 561 if (!Import.Module.empty()) { in parseLinkingSectionSymtab() 590 Info.Name = Import.Field; in parseLinkingSectionSymtab() 592 GlobalType = &Import.Global; in parseLinkingSectionSymtab() 593 if (!Import.Module.empty()) { in parseLinkingSectionSymtab() 622 Info.Name = Import.Field; in parseLinkingSectionSymtab() 624 TableType = &Import.Table; in parseLinkingSectionSymtab() 625 if (!Import.Module.empty()) { in parseLinkingSectionSymtab() 688 Info.Name = Import.Field; in parseLinkingSectionSymtab() 690 TagType = &Import.Tag; in parseLinkingSectionSymtab() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExternalASTMerger.cpp | 59 auto SourceNameOrErr = ReverseImporter.Import(Name); in LookupSameContext() 175 auto DeclOrErr = OtherImporter.Import(Persistent); in ImportImpl() 457 auto ImportedSpecOrError = Importer->Import(Spec); in importSpecializations() 492 auto FromNameOrErr = Reverse.Import(Name); in FindExternalVisibleDeclsByName() 512 auto NDOrErr = Importer->Import(LookupRes); in FindExternalVisibleDeclsByName() 535 auto ImportedDeclOrErr = Forward.Import(SourceDecl); in FindExternalLexicalDecls()
|
| H A D | ASTImporter.cpp | 154 auto ToOrErr = Importer.Import(From); in importInto() 164 auto ToOrErr = Importer.Import(From); in import() 178 return Importer.Import(From); in import() 7732 IdentifierInfo *ToII = Importer.Import(FromII); in VisitCXXPseudoDestructorExpr() 8333 if (Expected<Expr *> R = Import(CLE)) in Import() 8381 ExpectedType TOrErr = Import(FromTSI->getType()); in Import() 8461 Expected<Decl *> ASTImporter::Import(Decl *FromD) { in Import() function in ASTImporter 8585 auto ToAttrOrErr = Import(FromAttr); in Import() 8856 if (auto ToOrErr = Import(I)) in Import() 9142 ExpectedDecl ToOrErr = Import(From); in ImportDefinition() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 86 struct Import { struct 286 std::vector<Import> Imports; 411 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Import) in LLVM_YAML_IS_SEQUENCE_VECTOR() 445 template <> struct MappingTraits<WasmYAML::Import> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 446 static void mapping(IO &IO, WasmYAML::Import &Import); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-link/ |
| H A D | llvm-link.cpp | 314 for (const auto &Import : Imports) { in importFunctions() local 316 size_t Idx = Import.find(':'); in importFunctions() 318 errs() << "Import parameter bad format: " << Import << "\n"; in importFunctions() 321 std::string FunctionName = Import.substr(0, Idx); in importFunctions() 322 std::string FileName = Import.substr(Idx + 1, std::string::npos); in importFunctions()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | FunctionImport.cpp | 1218 auto Import = ImportGUIDs.count(GUID); in importFunctions() local 1219 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing function " in importFunctions() 1222 if (Import) { in importFunctions() 1240 auto Import = ImportGUIDs.count(GUID); in importFunctions() local 1241 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing global " in importFunctions() 1244 if (Import) { in importFunctions() 1254 auto Import = ImportGUIDs.count(GUID); in importFunctions() local 1255 LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing alias " in importFunctions() 1258 if (Import) { in importFunctions()
|
| /freebsd-13.1/contrib/diff/ |
| H A D | FREEBSD-upgrade | 2 Import of GNU diff 2.8.7
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 384 ImportDecl *Import = ImportDecl::Create(Context, CurContext, StartLoc, in ActOnModuleImport() local 386 CurContext->addDecl(Import); in ActOnModuleImport() 391 Context.addModuleInitializer(ModuleScopes.back().Module, Import); in ActOnModuleImport() 395 if (ExportLoc.isValid() || getEnclosingExportDecl(Import)) in ActOnModuleImport() 401 return Import; in ActOnModuleImport()
|
| /freebsd-13.1/contrib/tcsh/ |
| H A D | FREEBSD-upgrade | 12 cvs import -m "Import of tcsh-6.15.00" \
|
| /freebsd-13.1/contrib/ngatm/ |
| H A D | FREEBSD-upgrade | 7 Import should be done by:
|
| /freebsd-13.1/sys/contrib/openzfs/etc/systemd/system/ |
| H A D | zfs-import-scan.service.in | 2 Description=Import ZFS pools by device scanning
|
| H A D | zfs-import-cache.service.in | 2 Description=Import ZFS pools by cache file
|
| /freebsd-13.1/contrib/bsnmp/ |
| H A D | FREEBSD-upgrade | 8 Import should be done by:
|
| /freebsd-13.1/lib/libz/ |
| H A D | FREEBSD-upgrade | 10 2) Import onto the vendor area.
|
| /freebsd-13.1/sys/contrib/ngatm/ |
| H A D | FREEBSD-upgrade | 8 Import should be done by:
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaInternal.h | 57 if (auto *Import = D->getAttr<DLLImportAttr>()) in getDLLAttr() local 58 return Import; in getDLLAttr()
|