Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DImportedFunctionsInliningStatistics.cpp42 ValueLookup->Imported = F.hasMetadata("thinlto_src_module"); in createInlineGraphNode()
54 if (!CallerNode.Imported && !CalleeNode.Imported) { in recordInline()
64 if (!CallerNode.Imported) { in recordInline()
124 if (Node->second->Imported) { in dump()
136 << (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()
140 Worklist.push_back(Imported); in makeTransitiveImportsVisible()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DHeaderIncludeGen.cpp150 const Module *Imported) override;
435 const Module *Imported) { in moduleImport() argument
436 if (!Imported) in moduleImport()
447 HSI.getModuleMap().getModuleMapFileForUniquing(Imported); in moduleImport()
H A DDiagnosticRenderer.cpp200 std::pair<FullSourceLoc, StringRef> Imported = Loc.getModuleImportLoc(); in emitIncludeStackRecursively() local
201 if (!Imported.second.empty()) { in emitIncludeStackRecursively()
203 emitImportStackRecursively(Imported.first, Imported.second); in emitIncludeStackRecursively()
/freebsd/contrib/tcsh/
H A DFREEBSD-upgrade8 Imported by:
H A DNewThings47 * Imported environment variables are not globbed.
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/
H A DImportedFunctionsInliningStatistics.h60 bool Imported = false; member
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h212 const Module *Imported) { in moduleImport() argument
552 const Module *Imported) override { in moduleImport() argument
553 First->moduleImport(ImportLoc, Path, Imported); in moduleImport()
554 Second->moduleImport(ImportLoc, Path, Imported); in moduleImport()
H A DNoTrivialPPDirectiveTracer.h175 const Module *Imported) override { in moduleImport() argument
H A DModuleMap.h709 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.cpp655 const Module *Imported) { in moduleImport() argument
664 handleImport(Imported); in moduleImport()
667 void ModuleDepCollectorPP::handleImport(const Module *Imported) { in handleImport() argument
668 if (!Imported) in handleImport()
671 const Module *TopLevelModule = Imported->getTopLevelModule(); in handleImport()
678 MDC.DirectImports.insert(Imported); in handleImport()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h237 const Module *Imported) override;
245 void handleImport(const Module *Imported);
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp1343 Module *Imported = nullptr; in LexAfterModuleImport() local
1346 Imported = TheModuleLoader.loadModule(ModuleImportLoc, in LexAfterModuleImport()
1350 if (Imported) in LexAfterModuleImport()
1351 makeModuleVisible(Imported, SemiLoc); in LexAfterModuleImport()
1355 Callbacks->moduleImport(ModuleImportLoc, NamedModuleImportPath, Imported); in LexAfterModuleImport()
H A DPragma.cpp1715 Module *Imported = in HandlePragma() local
1718 if (!Imported) in HandlePragma()
1721 PP.makeModuleVisible(Imported, ImportLoc); in HandlePragma()
1723 tok::annot_module_include, Imported); in HandlePragma()
1725 CB->moduleImport(ImportLoc, ModuleName, Imported); in HandlePragma()
H A DPPDirectives.cpp2423 ModuleLoadResult Imported = TheModuleLoader.loadModule( in HandleHeaderIncludeOrImport() local
2426 assert((Imported == nullptr || Imported == ModuleToImport) && in HandleHeaderIncludeOrImport()
2429 if (Imported) { in HandleHeaderIncludeOrImport()
2431 } else if (Imported.isMissingExpected()) { in HandleHeaderIncludeOrImport()
2433 static_cast<Module *>(Imported)->getTopLevelModule()); in HandleHeaderIncludeOrImport()
2439 } else if (Imported.isConfigMismatch()) { in HandleHeaderIncludeOrImport()
H A DModuleMap.cpp1297 ModuleHeaderRole Role, bool Imported) { in addHeader() argument
1313 if (!Imported || isCompilingModuleHeader) { in addHeader()
/freebsd/contrib/sendmail/
H A DFREEBSD-upgrade8 Imported using the instructions at:
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h561 virtual void Imported(Decl *From, Decl *To) {} in Imported() function
H A DDecl.h4980 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported,
4983 ImportDecl(DeclContext *DC, SourceLocation StartLoc, Module *Imported,
5005 SourceLocation StartLoc, Module *Imported,
5011 SourceLocation StartLoc, Module *Imported,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderInternals.h382 bool Imported; member
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5913 Module *Imported, in ImportDecl() argument
5915 : Decl(Import, DC, StartLoc), ImportedModule(Imported), in ImportDecl()
5917 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size()); in ImportDecl()
5923 Module *Imported, SourceLocation EndLoc) in ImportDecl() argument
5924 : Decl(Import, DC, StartLoc), ImportedModule(Imported), in ImportDecl()
5930 SourceLocation StartLoc, Module *Imported, in Create() argument
5934 ImportDecl(DC, StartLoc, Imported, IdentifierLocs); in Create()
5939 Module *Imported, in CreateImplicit() argument
5942 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;
/freebsd/contrib/one-true-awk/
H A DChangeLog81 * lib.c (readrec): Allow RS a regular expression. Imported

12