Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DProgram.inc295 std::string PathStr = Program;
297 execve(PathStr.c_str(),
301 execv(PathStr.c_str(),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DProgram.inc307 std::string PathStr = Program;
309 execve(PathStr.c_str(), const_cast<char **>(Argv),
312 execv(PathStr.c_str(), const_cast<char **>(Argv));
DPath.inc617 StringRef PathStr(Path.begin(), Path.size());
618 if (PathStr.empty() || !PathStr.startswith("~"))
621 PathStr = PathStr.drop_front();
623 PathStr.take_until([](char c) { return path::is_separator(c); });
624 StringRef Remainder = PathStr.substr(Expr.size() + 1);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DPath.cpp1115 SmallString<128> PathStr = path::parent_path(Path); in replace_filename() local
1116 path::append(PathStr, Filename); in replace_filename()
1117 this->Path = PathStr.str(); in replace_filename()
DVirtualFileSystem.cpp2096 SmallString<128> PathStr(Dir); in incrementContent() local
2097 llvm::sys::path::append(PathStr, (*Current)->getName()); in incrementContent()
2107 CurrentEntry = directory_entry(PathStr.str(), Type); in incrementContent()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DPath.inc1295 StringRef PathStr(Path.begin(), Path.size());
1296 PathStr = PathStr.drop_front();
1297 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });