Home
last modified time | relevance | path

Searched refs:Imported (Results 1 – 25 of 31) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DImportedFunctionsInliningStatistics.cpp43 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 DSemaModule.cpp85 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 DFREEBSD-upgrade8 Imported by:
H A DNewThings47 * Imported environment variables are not globbed.
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp202 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 DImportedFunctionsInliningStatistics.h59 bool Imported = false; member
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h180 const Module *Imported) override;
188 void handleImport(const Module *Imported);
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h211 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 DModuleMap.h705 ModuleHeaderRole Role, bool Imported = false);
/freebsd/contrib/bzip2/
H A DFREEBSD-upgrade4 Imported by:
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp480 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 DPreprocessor.cpp1312 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 DPragma.cpp1707 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 DPPDirectives.cpp2389 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 DModuleMap.cpp1283 ModuleHeaderRole Role, bool Imported) { in addHeader() argument
1297 if (!Imported || isCompilingModuleHeader) { in addHeader()
/freebsd/contrib/sendmail/
H A DFREEBSD-upgrade8 Imported using the instructions at:
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderInternals.h256 bool Imported; member
H A DASTReader.cpp2021 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 DASTImporter.h548 virtual void Imported(Decl *From, Decl *To) {} in Imported() function
H A DDecl.h4798 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 DDecl.cpp5676 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 DExternalASTMerger.cpp195 void Imported(Decl *From, Decl *To) override { in Imported() function in __anonb979a45e0111::LazyASTImporter
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.h335 void Imported(clang::Decl *from, clang::Decl *to) override;
H A DClangASTImporter.cpp1263 void ClangASTImporter::ASTImporterDelegate::Imported(clang::Decl *from, in Imported() function in ClangASTImporter::ASTImporterDelegate
/freebsd/contrib/one-true-awk/
H A DChangeLog81 * lib.c (readrec): Allow RS a regular expression. Imported

12