Home
last modified time | relevance | path

Searched refs:IncludePath (Results 1 – 25 of 28) sorted by relevance

12

/llvm-project-15.0.7/clang-tools-extra/modularize/
H A DCoverageChecker.cpp351 bool CoverageChecker::collectFileSystemHeaders(StringRef IncludePath) { in collectFileSystemHeaders() argument
355 if (IncludePath.size()) in collectFileSystemHeaders()
356 sys::path::append(Directory, IncludePath); in collectFileSystemHeaders()
359 if (IncludePath.startswith("/") || IncludePath.startswith("\\") || in collectFileSystemHeaders()
360 ((IncludePath.size() >= 2) && (IncludePath[1] == ':'))) { in collectFileSystemHeaders()
361 llvm::errs() << "error: Include path \"" << IncludePath in collectFileSystemHeaders()
395 << IncludePath << "\"\n"; in collectFileSystemHeaders()
H A DCoverageChecker.h150 bool collectFileSystemHeaders(llvm::StringRef IncludePath);
/llvm-project-15.0.7/clang-tools-extra/unittests/clang-include-fixer/
H A DIncludeFixerTest.cpp154 std::vector<std::string> IncludePath = {"-Idir/"}; in TEST() local
156 runIncludeFixer("a::b::foo bar;\n", IncludePath)); in TEST()
158 IncludePath = {"-isystemdir"}; in TEST()
160 runIncludeFixer("a::b::foo bar;\n", IncludePath)); in TEST()
162 IncludePath = {"-iquotedir"}; in TEST()
164 runIncludeFixer("a::b::foo bar;\n", IncludePath)); in TEST()
166 IncludePath = {"-Idir", "-Idir/otherdir"}; in TEST()
168 runIncludeFixer("a::b::foo bar;\n", IncludePath)); in TEST()
/llvm-project-15.0.7/llvm/include/llvm/WindowsResource/
H A DResourceProcessor.h32 void addInclude(const PathType &IncludePath) { in addInclude() argument
33 IncludeList.push_back(IncludePath); in addInclude()
/llvm-project-15.0.7/clang/lib/Lex/
H A DInitHeaderSearch.cpp49 std::vector<DirectoryLookupInfo> IncludePath; member in __anon775442750111::InitHeaderSearch
169 IncludePath.emplace_back(Group, DirectoryLookup(*DE, Type, isFramework), in AddUnmappedPath()
180 IncludePath.emplace_back( in AddUnmappedPath()
593 SearchList.reserve(IncludePath.size()); in Realize()
596 for (auto &Include : IncludePath) in Realize()
604 for (auto &Include : IncludePath) in Realize()
611 for (auto &Include : IncludePath) in Realize()
620 for (auto &Include : IncludePath) in Realize()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/portability/
H A DRestrictSystemIncludesCheck.h64 : Loc(Loc), Range(Range), IncludeFile(Filename), IncludePath(FullPath), in IncludeDirective()
70 std::string IncludePath; // Full file path as a string member
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DHeaders.cpp214 auto IncludePath = URI::includeSpelling(*U); in toHeaderFile() local
215 if (!IncludePath) in toHeaderFile()
216 return IncludePath.takeError(); in toHeaderFile()
217 if (!IncludePath->empty()) in toHeaderFile()
218 return HeaderFile{std::move(*IncludePath), /*Verbatim=*/true}; in toHeaderFile()
/llvm-project-15.0.7/clang/lib/Driver/ToolChains/
H A DROCm.h109 SmallString<0> IncludePath; variable
195 StringRef getIncludePath() const { return IncludePath; } in getIncludePath()
H A DCuda.h37 std::string IncludePath; variable
72 StringRef getIncludePath() const { return IncludePath; } in getIncludePath()
H A DNetBSD.cpp449 for (const auto &IncludePath : Candidates) { in addLibCxxIncludePaths() local
450 if (!getVFS().exists(IncludePath + "/__config")) in addLibCxxIncludePaths()
454 addSystemInclude(DriverArgs, CC1Args, IncludePath); in addLibCxxIncludePaths()
H A DLinux.cpp665 for (const auto &IncludePath : LibStdCXXIncludePathCandidates) { in addLibStdCxxIncludePaths() local
666 if (addLibStdCXXIncludePaths(IncludePath, TripleStr, in addLibStdCxxIncludePaths()
H A DCuda.cpp183 IncludePath = InstallPath + "/include"; in CudaInstallationDetector()
186 if (!(FS.exists(IncludePath) && FS.exists(BinPath))) in CudaInstallationDetector()
H A DAMDGPU.cpp460 IncludePath = InstallPath; in detectHIPRuntime()
461 llvm::sys::path::append(IncludePath, "include"); in detectHIPRuntime()
/llvm-project-15.0.7/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp90 llvm::SmallString<128> IncludePath(SDKPath); in getWindows10SDKVersionFromPath() local
91 llvm::sys::path::append(IncludePath, "Include"); in getWindows10SDKVersionFromPath()
92 SDKVersion = getHighestNumericTupleInDirectory(VFS, IncludePath); in getWindows10SDKVersionFromPath()
/llvm-project-15.0.7/llvm/lib/IR/
H A DLLVMContextImpl.h914 MDString *IncludePath;
920 MDString *ConfigurationMacros, MDString *IncludePath,
923 ConfigurationMacros(ConfigurationMacros), IncludePath(IncludePath),
928 IncludePath(N->getRawIncludePath()),
935 IncludePath == RHS->getRawIncludePath() &&
942 return hash_combine(Scope, Name, ConfigurationMacros, IncludePath);
H A DDebugInfoMetadata.cpp1089 MDString *IncludePath, MDString *APINotesFile, in getImpl() argument
1094 IncludePath, APINotesFile, LineNo, IsDecl)); in getImpl()
1096 IncludePath, APINotesFile}; in getImpl()
H A DDIBuilder.cpp924 StringRef IncludePath, StringRef APINotesFile, in createModule() argument
927 ConfigurationMacros, IncludePath, APINotesFile, LineNo, in createModule()
/llvm-project-15.0.7/llvm/lib/Support/
H A DSourceMgr.cpp213 bool IncludePath) const { in getFormattedLocationNoOffset()
218 if (IncludePath) { in getFormattedLocationNoOffset()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DSourceMgr.h208 bool IncludePath = false) const;
/llvm-project-15.0.7/llvm/bindings/ocaml/debuginfo/
H A Ddebuginfo_ocaml.c254 value IncludePath, value SysRoot) { in llvm_dibuild_create_module_native() argument
258 caml_string_length(ConfigMacros), String_val(IncludePath), in llvm_dibuild_create_module_native()
259 caml_string_length(IncludePath), String_val(SysRoot), in llvm_dibuild_create_module_native()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h2319 StringRef IncludePath, StringRef APINotesFile,
2324 getCanonicalMDString(Context, IncludePath),
2330 MDString *ConfigurationMacros, MDString *IncludePath,
2343 StringRef ConfigurationMacros, StringRef IncludePath,
2346 (File, Scope, Name, ConfigurationMacros, IncludePath,
2350 MDString *ConfigurationMacros, MDString *IncludePath,
2353 (File, Scope, Name, ConfigurationMacros, IncludePath,
H A DDIBuilder.h843 StringRef ConfigurationMacros, StringRef IncludePath,
/llvm-project-15.0.7/clang/lib/Driver/
H A DToolChain.cpp953 std::string ToolChain::detectLibcxxVersion(StringRef IncludePath) const { in detectLibcxxVersion()
957 SmallString<128> Path(IncludePath); in detectLibcxxVersion()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DToolChain.h646 virtual std::string detectLibcxxVersion(StringRef IncludePath) const;
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DDebugInfo.h315 const char *IncludePath, size_t IncludePathLen,

12