Searched refs:PathStr (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/profile/ |
| H A D | InstrProfilingUtil.c | 274 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 D | InstrProfilingUtil.h | 54 void lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Program.inc | 309 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 D | Path.inc | 648 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 D | Path.cpp | 1140 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 D | VirtualFileSystem.cpp | 1061 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 D | macho_platform.cpp | 498 std::string PathStr(Path.data(), Path.size()); in getJITDylibInitializersByName() local
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 1351 StringRef PathStr(Path.begin(), Path.size()); 1352 PathStr = PathStr.drop_front(); 1353 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
|