Home
last modified time | relevance | path

Searched refs:ParentPath (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/llvm/include/llvm/DWARFLinker/
DDWARFLinkerDeclContext.h36 SmallString<256> ParentPath = sys::path::parent_path(Path); in resolve() local
40 if (!ResolvedPaths.count(ParentPath)) { in resolve()
42 sys::fs::real_path(ParentPath, RealPath); in resolve()
43 ResolvedPaths.insert({ParentPath, StringRef(RealPath).str()}); in resolve()
47 SmallString<256> ResolvedPath(ResolvedPaths[ParentPath]); in resolve()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/
DDWARFLinkerDeclContext.h35 SmallString<256> ParentPath = sys::path::parent_path(Path); in resolve() local
39 if (!ResolvedPaths.count(ParentPath)) { in resolve()
41 sys::fs::real_path(ParentPath, RealPath); in resolve()
42 ResolvedPaths.insert({ParentPath, StringRef(RealPath).str()}); in resolve()
46 SmallString<256> ResolvedPath(ResolvedPaths[ParentPath]); in resolve()
/external/llvm-project/llvm/unittests/Support/
Draw_pwrite_stream_test.cpp59 const char *ParentPath = getenv("RAW_PWRITE_TEST_FILE"); in TEST() local
60 if (ParentPath) { in TEST()
61 Path = ParentPath; in TEST()
/external/llvm/tools/llvm-cov/
DSourceCoverageView.cpp43 SmallString<256> ParentPath = sys::path::parent_path(Path); in getOutputPath() local
44 sys::path::remove_dots(ParentPath, /*remove_dot_dots=*/true); in getOutputPath()
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath)); in getOutputPath()
/external/llvm-project/llvm/tools/llvm-cov/
DSourceCoverageView.cpp43 SmallString<256> ParentPath = sys::path::parent_path(Path); in getOutputPath() local
44 sys::path::remove_dots(ParentPath, /*remove_dot_dots=*/true); in getOutputPath()
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath)); in getOutputPath()
/external/llvm/tools/llvm-lto/
Dllvm-lto.cpp331 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() local
332 if (!ParentPath.empty()) { in getThinLTOOutputFile()
334 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) in getThinLTOOutputFile()
335 error(EC, "error creating the directory '" + ParentPath + "'"); in getThinLTOOutputFile()
/external/llvm-project/llvm/tools/llvm-lto/
Dllvm-lto.cpp485 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() local
486 if (!ParentPath.empty()) { in getThinLTOOutputFile()
488 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) in getThinLTOOutputFile()
489 error(EC, "error creating the directory '" + ParentPath + "'"); in getThinLTOOutputFile()
/external/llvm/tools/gold/
Dgold-plugin.cpp1293 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() local
1294 if (!ParentPath.empty()) { in getThinLTOOutputFile()
1296 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) in getThinLTOOutputFile()
1297 llvm::errs() << "warning: could not create directory '" << ParentPath in getThinLTOOutputFile()
/external/llvm-project/clang/lib/Driver/ToolChains/
DMSVC.cpp142 llvm::StringRef ParentPath = llvm::sys::path::parent_path(TestPath); in findVCToolChainViaEnvironment() local
143 llvm::StringRef ParentFilename = llvm::sys::path::filename(ParentPath); in findVCToolChainViaEnvironment()
145 Path = std::string(ParentPath); in findVCToolChainViaEnvironment()
151 Path = std::string(ParentPath); in findVCToolChainViaEnvironment()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTO.cpp1182 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() local
1183 if (!ParentPath.empty()) { in getThinLTOOutputFile()
1185 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) in getThinLTOOutputFile()
1186 llvm::errs() << "warning: could not create directory '" << ParentPath in getThinLTOOutputFile()
/external/llvm-project/llvm/lib/LTO/
DLTO.cpp1253 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() local
1254 if (!ParentPath.empty()) { in getThinLTOOutputFile()
1256 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) in getThinLTOOutputFile()
1257 llvm::errs() << "warning: could not create directory '" << ParentPath in getThinLTOOutputFile()
/external/llvm-project/clang-tools-extra/clang-doc/
DHTMLGenerator.cpp419 llvm::StringRef Title, StringRef ParentPath) { in genReferencesBlock() argument
430 LiNode->Children.emplace_back(genReference(R, ParentPath)); in genReferencesBlock()