Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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,
/openbsd-src/gnu/llvm/llvm/lib/Support/Unix/
H A DProgram.inc314 std::string PathStr = std::string(Program);
316 execve(PathStr.c_str(), const_cast<char **>(Argv),
319 execv(PathStr.c_str(), const_cast<char **>(Argv));
H A DPath.inc649 StringRef PathStr(Path.begin(), Path.size());
650 if (PathStr.empty() || !PathStr.startswith("~"))
653 PathStr = PathStr.drop_front();
655 PathStr.take_until([](char c) { return path::is_separator(c); });
656 StringRef Remainder = PathStr.substr(Expr.size() + 1);
/openbsd-src/gnu/llvm/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.cpp1240 SmallString<128> PathStr(Dir); in incrementImpl() local
1241 llvm::sys::path::append(PathStr, (*Current)->getName()); in incrementImpl()
1253 CurrentEntry = directory_entry(std::string(PathStr.str()), Type); in incrementImpl()
/openbsd-src/gnu/llvm/compiler-rt/lib/orc/
H A Delfnix_platform.cpp349 std::string PathStr(Path.data(), Path.size()); in getJITDylibInitializersByName() local
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc1358 StringRef PathStr(Path.begin(), Path.size());
1359 PathStr = PathStr.drop_front();
1361 PathStr.take_until([](char c) { return path::is_separator(c); });