Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingUtil.c274 lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix, in lprofApplyPathPrefix() argument
279 const char *StrippedPathStr = PathStr; in lprofApplyPathPrefix()
281 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,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc309 std::string PathStr = std::string(Program);
311 execve(PathStr.c_str(), const_cast<char **>(Argv),
314 execv(PathStr.c_str(), const_cast<char **>(Argv));
H A DPath.inc648 StringRef PathStr(Path.begin(), Path.size());
649 if (PathStr.empty() || !PathStr.startswith("~"))
652 PathStr = PathStr.drop_front();
654 PathStr.take_until([](char c) { return path::is_separator(c); });
655 StringRef Remainder = PathStr.substr(Expr.size() + 1);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp1140 SmallString<128> PathStr = path::parent_path(Path); in replace_filename() local
1141 path::append(PathStr, Filename); in replace_filename()
1142 this->Path = std::string(PathStr.str()); in replace_filename()
H A DVirtualFileSystem.cpp1061 SmallString<128> PathStr(Dir); in incrementImpl() local
1062 llvm::sys::path::append(PathStr, (*Current)->getName()); in incrementImpl()
1074 CurrentEntry = directory_entry(std::string(PathStr.str()), Type); in incrementImpl()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/
H A Dmacho_platform.cpp498 std::string PathStr(Path.data(), Path.size()); in getJITDylibInitializersByName() local
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1351 StringRef PathStr(Path.begin(), Path.size());
1352 PathStr = PathStr.drop_front();
1353 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });