Searched refs:PathStr (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingUtil.h48 /* Apply the path prefix specified in \c Prefix to path string in \c PathStr,
50 * is not zero, path prefixes are stripped from \c PathStr (the level of
53 void lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix,
H A DInstrProfilingUtil.c269 lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix, argument
274 const char *StrippedPathStr = PathStr;
276 for (Level = 0, Ptr = PathStr + 1; Level < PrefixStrip; ++Ptr) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc305 std::string PathStr = std::string(Program);
307 execve(PathStr.c_str(), const_cast<char **>(Argv),
310 execv(PathStr.c_str(), const_cast<char **>(Argv));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1315 StringRef PathStr(Path.begin(), Path.size());
1316 PathStr = PathStr.drop_front();
1317 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp1130 SmallString<128> PathStr = path::parent_path(Path);
1131 path::append(PathStr, Filename);
1132 this->Path = std::string(PathStr.str());
H A DVirtualFileSystem.cpp2142 SmallString<128> PathStr(Dir);
2143 llvm::sys::path::append(PathStr, (*Current)->getName());
2153 CurrentEntry = directory_entry(std::string(PathStr.str()), Type);

Completed in 74 milliseconds