Home
last modified time | relevance | path

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

123

/llvm-project-15.0.7/clang/test/ASTMerge/namespace/
H A Dtest.cpp9 typedef TestUnresolvedTypenameAndValueDecls::Derived<int> Imported; in testImport() typedef
10 Imported a; // Successful instantiation in testImport()
11 static_assert(sizeof(Imported::foo) == sizeof(int)); in testImport()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DImportedFunctionsInliningStatistics.cpp41 ValueLookup->Imported = F.hasMetadata("thinlto_src_module"); in createInlineGraphNode()
53 if (!CallerNode.Imported && !CalleeNode.Imported) { in recordInline()
63 if (!CallerNode.Imported) { in recordInline()
123 if (Node->second->Imported) { in dump()
135 << (Node->second->Imported ? "imported " : "not imported ") in dump()
/llvm-project-15.0.7/clang/unittests/AST/
H A DASTImporterFixtures.h223 auto Imported = Importer.Import(Node); in importNode() local
225 if (Imported) { in importNode()
234 (*Imported)->dump(ToNothing); in importNode()
237 return Imported; in importNode()
277 if (!Imported) { in testImport()
279 handleAllErrors(Imported.takeError(), in testImport()
287 return Verifier.match(*Imported, WrapperMatcher); in testImport()
408 auto Imported = importNode(From, To, *ImporterRef, ToImport); in testImportSequence() local
409 EXPECT_TRUE(static_cast<bool>(Imported)); in testImportSequence()
410 if (!Imported) in testImportSequence()
[all …]
H A DASTImporterFixtures.cpp166 Decl *Imported = in getImportedDecl() local
169 assert(Imported); in getImportedDecl()
170 return std::make_tuple(*FoundDecls.begin(), Imported); in getImportedDecl()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/llvmlibc/
H A DRestrictSystemLibcHeadersCheck.cpp38 StringRef RelativePath, const Module *Imported,
50 StringRef SearchPath, StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
57 RelativePath, Imported, FileType); in InclusionDirective()
/llvm-project-15.0.7/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp192 StringRef SearchPath, StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
194 if (!File && !Imported) { in InclusionDirective()
199 handleImport(Imported); in InclusionDirective()
204 const Module *Imported) { in moduleImport() argument
205 handleImport(Imported); in moduleImport()
208 void ModuleDepCollectorPP::handleImport(const Module *Imported) { in handleImport() argument
209 if (!Imported) in handleImport()
212 const Module *TopLevelModule = Imported->getTopLevelModule(); in handleImport()
/llvm-project-15.0.7/lldb/test/API/lang/cpp/nsimport/
H A Dmain.cpp54 namespace Imported namespace
65 using namespace Imported; in main()
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DPPCallbacks.h135 const Module *Imported, in InclusionDirective() argument
173 const Module *Imported) { in moduleImport() argument
462 StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
466 Imported, FileType); in InclusionDirective()
469 Imported, FileType); in InclusionDirective()
485 const Module *Imported) override { in moduleImport() argument
486 First->moduleImport(ImportLoc, Path, Imported); in moduleImport()
487 Second->moduleImport(ImportLoc, Path, Imported); in moduleImport()
/llvm-project-15.0.7/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h162 StringRef RelativePath, const Module *Imported,
165 const Module *Imported) override;
177 void handleImport(const Module *Imported);
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DSuspiciousIncludeCheck.cpp29 StringRef RelativePath, const Module *Imported,
76 StringRef SearchPath, StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DDuplicateIncludeCheck.cpp52 StringRef RelativePath, const Module *Imported,
81 StringRef SearchPath, StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
/llvm-project-15.0.7/lld/test/wasm/
H A Dduplicate-global-imports.s16 # Imported as an i32 instead of i64, so should not be de-duped.
22 # Imported as mutable instead of immutable, so should not be de-duped.
/llvm-project-15.0.7/clang/lib/Frontend/
H A DDependencyGraph.cpp52 StringRef RelativePath, const Module *Imported,
77 const Module *Imported, in InclusionDirective() argument
H A DDiagnosticRenderer.cpp203 std::pair<FullSourceLoc, StringRef> Imported = Loc.getModuleImportLoc(); in emitIncludeStackRecursively() local
204 if (!Imported.second.empty()) { in emitIncludeStackRecursively()
206 emitImportStackRecursively(Imported.first, Imported.second); in emitIncludeStackRecursively()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/
H A DExpandModularHeadersPPCallbacks.cpp166 StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
168 if (Imported) { in InclusionDirective()
171 Imported->getASTFile()); in InclusionDirective()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DDeprecatedHeadersCheck.cpp37 StringRef RelativePath, const Module *Imported,
183 StringRef SearchPath, StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/llvm/
H A DIncludeOrderCheck.cpp32 StringRef RelativePath, const Module *Imported,
86 StringRef SearchPath, StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
/llvm-project-15.0.7/clang/unittests/Lex/
H A DPPCallbacksTest.cpp40 StringRef RelativePath, const Module *Imported, in InclusionDirective() argument
50 this->Imported = Imported; in InclusionDirective()
62 const Module* Imported; member in __anonec3cc9fe0111::InclusionDirectiveCallbacks
/llvm-project-15.0.7/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp77 StringRef RelativePath, const Module *Imported,
192 const Module *Imported, in InclusionDirective() argument
194 if (Imported) { in InclusionDirective()
195 auto P = ModuleIncludes.insert(std::make_pair(HashLoc, Imported)); in InclusionDirective()
/llvm-project-15.0.7/clang-tools-extra/pp-trace/
H A DPPCallbacksTracker.cpp138 const Module *Imported, SrcMgr::CharacteristicKind FileType) { in InclusionDirective() argument
148 appendArgument("Imported", Imported); in InclusionDirective()
155 const Module *Imported) { in moduleImport() argument
159 appendArgument("Imported", Imported); in moduleImport()
H A DPPCallbacksTracker.h99 llvm::StringRef RelativePath, const Module *Imported,
102 const Module *Imported) override;
/llvm-project-15.0.7/llvm/include/llvm/Analysis/Utils/
H A DImportedFunctionsInliningStatistics.h59 bool Imported = false; member
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DMacroPPCallbacks.h105 StringRef RelativePath, const Module *Imported,
/llvm-project-15.0.7/polly/cmake/
H A DPollyConfig.cmake.in18 # Imported Targets:
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/portability/
H A DRestrictSystemIncludesCheck.cpp26 StringRef SearchPath, StringRef RelativePath, const Module *Imported, in InclusionDirective() argument

123