Home
last modified time | relevance | path

Searched refs:PathStr (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/profile/
H A DInstrProfilingUtil.c280 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 DInstrProfilingUtil.h54 void lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix,
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DProgram.inc310 std::string PathStr = std::string(Program);
312 execve(PathStr.c_str(), const_cast<char **>(Argv),
315 execv(PathStr.c_str(), const_cast<char **>(Argv));
H A DPath.inc655 StringRef PathStr(Path.begin(), Path.size());
656 if (PathStr.empty() || !PathStr.startswith("~"))
659 PathStr = PathStr.drop_front();
661 PathStr.take_until([](char c) { return path::is_separator(c); });
662 StringRef Remainder = PathStr.substr(Expr.size() + 1);
/llvm-project-15.0.7/llvm/lib/Support/
H A DPath.cpp1144 SmallString<128> PathStr = path::parent_path(Path); in replace_filename() local
1145 path::append(PathStr, Filename); in replace_filename()
1146 this->Path = std::string(PathStr.str()); in replace_filename()
H A DVirtualFileSystem.cpp1244 SmallString<128> PathStr(Dir); in incrementImpl() local
1245 llvm::sys::path::append(PathStr, (*Current)->getName()); in incrementImpl()
1257 CurrentEntry = directory_entry(std::string(PathStr.str()), Type); in incrementImpl()
/llvm-project-15.0.7/compiler-rt/lib/orc/
H A Delfnix_platform.cpp346 std::string PathStr(Path.data(), Path.size()); in getJITDylibInitializersByName() local
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DPath.inc1366 StringRef PathStr(Path.begin(), Path.size());
1367 PathStr = PathStr.drop_front();
1368 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });