/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ImportedFunctionsInliningStatistics.cpp | 43 ValueLookup->Imported = F.hasMetadata("thinlto_src_module"); in createInlineGraphNode() 55 if (!CallerNode.Imported && !CalleeNode.Imported) { in recordInline() 65 if (!CallerNode.Imported) { in recordInline() 125 if (Node->second->Imported) { in dump() 137 << (Node->second->Imported ? "imported " : "not imported ") in dump()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaModule.cpp | 85 isImportingModuleUnitFromSameModule(ASTContext &Ctx, Module *Imported, in isImportingModuleUnitFromSameModule() argument 88 if (!Imported->isNamedModule()) in isImportingModuleUnitFromSameModule() 93 if (Imported->isModulePartition()) in isImportingModuleUnitFromSameModule() 99 return Imported == FoundPrimaryModuleInterface; in isImportingModuleUnitFromSameModule() 113 if (Ctx.isInSameModule(Imported, CurrentModule)) { in isImportingModuleUnitFromSameModule() 115 FoundPrimaryModuleInterface == Imported); in isImportingModuleUnitFromSameModule() 116 FoundPrimaryModuleInterface = Imported; in isImportingModuleUnitFromSameModule() 131 Module *Imported, Module *CurrentModule, in makeTransitiveImportsVisible() argument 134 assert(Imported->isNamedModule() && in makeTransitiveImportsVisible() 139 Worklist.push_back(Imported); in makeTransitiveImportsVisible() [all …]
|
/freebsd/contrib/tcsh/ |
H A D | FREEBSD-upgrade | 8 Imported by:
|
H A D | NewThings | 47 * Imported environment variables are not globbed.
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | DiagnosticRenderer.cpp | 202 std::pair<FullSourceLoc, StringRef> Imported = Loc.getModuleImportLoc(); in emitIncludeStackRecursively() local 203 if (!Imported.second.empty()) { in emitIncludeStackRecursively() 205 emitImportStackRecursively(Imported.first, Imported.second); in emitIncludeStackRecursively()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/ |
H A D | ImportedFunctionsInliningStatistics.h | 59 bool Imported = false; member
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ |
H A D | ModuleDepCollector.h | 180 const Module *Imported) override; 188 void handleImport(const Module *Imported);
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | PPCallbacks.h | 211 const Module *Imported) { in moduleImport() argument 551 const Module *Imported) override { in moduleImport() argument 552 First->moduleImport(ImportLoc, Path, Imported); in moduleImport() 553 Second->moduleImport(ImportLoc, Path, Imported); in moduleImport()
|
H A D | ModuleMap.h | 705 ModuleHeaderRole Role, bool Imported = false);
|
/freebsd/contrib/bzip2/ |
H A D | FREEBSD-upgrade | 4 Imported by:
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | ModuleDepCollector.cpp | 480 const Module *Imported) { in moduleImport() argument 489 handleImport(Imported); in moduleImport() 492 void ModuleDepCollectorPP::handleImport(const Module *Imported) { in handleImport() argument 493 if (!Imported) in handleImport() 496 const Module *TopLevelModule = Imported->getTopLevelModule(); in handleImport()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Preprocessor.cpp | 1312 Module *Imported = nullptr; in LexAfterModuleImport() local 1315 Imported = TheModuleLoader.loadModule(ModuleImportLoc, in LexAfterModuleImport() 1319 if (Imported) in LexAfterModuleImport() 1320 makeModuleVisible(Imported, SemiLoc); in LexAfterModuleImport() 1324 Callbacks->moduleImport(ModuleImportLoc, NamedModuleImportPath, Imported); in LexAfterModuleImport()
|
H A D | Pragma.cpp | 1707 Module *Imported = in HandlePragma() local 1710 if (!Imported) in HandlePragma() 1713 PP.makeModuleVisible(Imported, ImportLoc); in HandlePragma() 1715 tok::annot_module_include, Imported); in HandlePragma() 1717 CB->moduleImport(ImportLoc, ModuleName, Imported); in HandlePragma()
|
H A D | PPDirectives.cpp | 2389 ModuleLoadResult Imported = TheModuleLoader.loadModule( in HandleHeaderIncludeOrImport() local 2392 assert((Imported == nullptr || Imported == ModuleToImport) && in HandleHeaderIncludeOrImport() 2395 if (Imported) { in HandleHeaderIncludeOrImport() 2397 } else if (Imported.isMissingExpected()) { in HandleHeaderIncludeOrImport() 2399 static_cast<Module *>(Imported)->getTopLevelModule()); in HandleHeaderIncludeOrImport() 2405 } else if (Imported.isConfigMismatch()) { in HandleHeaderIncludeOrImport()
|
H A D | ModuleMap.cpp | 1283 ModuleHeaderRole Role, bool Imported) { in addHeader() argument 1297 if (!Imported || isCompilingModuleHeader) { in addHeader()
|
/freebsd/contrib/sendmail/ |
H A D | FREEBSD-upgrade | 8 Imported using the instructions at:
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderInternals.h | 256 bool Imported; member
|
H A D | ASTReader.cpp | 2021 if (!Key.Imported) { in getFile() 2076 ikey.Imported = true; in ReadKey() 2128 if (key.Imported) in ReadData() 5219 if (Module *Imported = getSubmodule(Import.ID)) { in InitializeContext() local 5220 makeModuleVisible(Imported, Module::AllVisible, in InitializeContext() 5223 PP.makeModuleVisible(Imported, Import.ImportLoc); in InitializeContext() 8396 if (Module *Imported = getSubmodule(Import.ID)) { in UpdateSema() local 8397 SemaObj->makeModuleVisible(Imported, Import.ImportLoc); in UpdateSema()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTImporter.h | 548 virtual void Imported(Decl *From, Decl *To) {} in Imported() function
|
H A D | Decl.h | 4798 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported, 4801 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported, 4823 SourceLocation StartLoc, Module *Imported, 4829 SourceLocation StartLoc, Module *Imported,
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Decl.cpp | 5676 Module *Imported, in ImportDecl() argument 5678 : Decl(Import, DC, StartLoc), ImportedModule(Imported), in ImportDecl() 5680 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size()); in ImportDecl() 5687 Module *Imported, SourceLocation EndLoc) in ImportDecl() argument 5688 : Decl(Import, DC, StartLoc), ImportedModule(Imported), in ImportDecl() 5694 SourceLocation StartLoc, Module *Imported, in Create() argument 5698 ImportDecl(DC, StartLoc, Imported, IdentifierLocs); in Create() 5703 Module *Imported, in CreateImplicit() argument 5706 ImportDecl(DC, StartLoc, Imported, EndLoc); in CreateImplicit()
|
H A D | ExternalASTMerger.cpp | 195 void Imported(Decl *From, Decl *To) override { in Imported() function in __anonb979a45e0111::LazyASTImporter
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangASTImporter.h | 335 void Imported(clang::Decl *from, clang::Decl *to) override;
|
H A D | ClangASTImporter.cpp | 1263 void ClangASTImporter::ASTImporterDelegate::Imported(clang::Decl *from, in Imported() function in ClangASTImporter::ASTImporterDelegate
|
/freebsd/contrib/one-true-awk/ |
H A D | ChangeLog | 81 * lib.c (readrec): Allow RS a regular expression. Imported
|