Searched refs:PathStr (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | FileList.cpp | 122 StringRef PathStr = *Path; in parseHeaders() local 125 HeaderFile{PathStr, *Type, /*IncludeName=*/"", Language}); in parseHeaders() 130 if (!FM->getOptionalFileRef(PathStr)) in parseHeaders() 132 PathStr, make_error_code(std::errc::no_such_file_or_directory)); in parseHeaders() 134 auto IncludeName = createIncludeHeaderName(PathStr); in parseHeaders() 135 HeaderList.emplace_back(PathStr, *Type, in parseHeaders()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/ |
H A D | InstrProfilingUtil.c | 280 lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix, in lprofApplyPathPrefix() argument 285 const char *StrippedPathStr = PathStr; in lprofApplyPathPrefix() 287 for (Level = 0, Ptr = PathStr + 1; Level < PrefixStrip; ++Ptr) { in lprofApplyPathPrefix()
|
H A D | InstrProfilingUtil.h | 54 void lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix,
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
H A D | Program.inc | 326 std::string PathStr = std::string(Program); 328 execve(PathStr.c_str(), const_cast<char **>(Argv), 331 execv(PathStr.c_str(), const_cast<char **>(Argv));
|
H A D | Path.inc | 654 StringRef PathStr(Path.begin(), Path.size()); 655 if (PathStr.empty() || !PathStr.starts_with("~")) 658 PathStr = PathStr.drop_front(); 660 PathStr.take_until([](char c) { return path::is_separator(c); }); 661 StringRef Remainder = PathStr.substr(Expr.size() + 1);
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Path.cpp | 1145 SmallString<128> PathStr = path::parent_path(Path); in replace_filename() local 1146 path::append(PathStr, Filename); in replace_filename() 1147 this->Path = std::string(PathStr); in replace_filename()
|
H A D | VirtualFileSystem.cpp | 1266 SmallString<128> PathStr(Dir); in incrementImpl() local 1267 llvm::sys::path::append(PathStr, (*Current)->getName()); in incrementImpl() 1279 CurrentEntry = directory_entry(std::string(PathStr), Type); in incrementImpl()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
H A D | elfnix_platform.cpp | 368 std::string PathStr(Path.data(), Path.size()); in getJITDylibInitializersByName() local
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Path.inc | 1406 StringRef PathStr(Path.begin(), Path.size()); 1407 PathStr = PathStr.drop_front(); 1409 PathStr.take_until([](char c) { return path::is_separator(c); });
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 4761 StringRef PathStr(Path.data(), Path.size()); in PreparePathForOutput() local 4762 if (PathStr == "<built-in>" || PathStr == "<command line>") in PreparePathForOutput()
|