Searched refs:PathStr (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
D | Program.inc | 74 const char *PathStr = getenv("PATH"); 75 if (PathStr == 0) 79 size_t PathLen = strlen(PathStr); 82 const char *Colon = std::find(PathStr, PathStr+PathLen, ':'); 86 if (FilePath.set(std::string(PathStr,Colon))) { 93 PathLen -= Colon-PathStr; 94 PathStr = Colon; 97 while (*PathStr == ':') { 98 PathStr++;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/ |
D | Path.inc | 487 StringRef PathStr(Path.begin(), Path.size()); 488 if (PathStr.empty() || !PathStr.startswith("~")) 491 PathStr = PathStr.drop_front(); 493 PathStr.take_until([](char c) { return path::is_separator(c); }); 494 StringRef Remainder = PathStr.substr(Expr.size() + 1);
|
D | Program.inc | 304 std::string PathStr = Program; 306 execve(PathStr.c_str(), const_cast<char **>(Argv), 309 execv(PathStr.c_str(), const_cast<char **>(Argv));
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Program.inc | 295 std::string PathStr = Program; 297 execve(PathStr.c_str(), 301 execv(PathStr.c_str(),
|
/external/llvm/lib/Support/Unix/ |
D | Program.inc | 295 std::string PathStr = Program; 297 execve(PathStr.c_str(), 301 execv(PathStr.c_str(),
|
/external/clang/lib/Basic/ |
D | VirtualFileSystem.cpp | 1760 SmallString<128> PathStr(Dir); in VFSFromYamlDirIterImpl() local 1761 llvm::sys::path::append(PathStr, (*Current)->getName()); in VFSFromYamlDirIterImpl() 1762 llvm::ErrorOr<vfs::Status> S = FS.status(PathStr); in VFSFromYamlDirIterImpl() 1773 SmallString<128> PathStr(Dir); in increment() local 1774 llvm::sys::path::append(PathStr, (*Current)->getName()); in increment() 1775 llvm::ErrorOr<vfs::Status> S = FS.status(PathStr); in increment()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/ |
D | Path.inc | 1209 StringRef PathStr(Path.begin(), Path.size()); 1210 PathStr = PathStr.drop_front(); 1211 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
|