Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DPath.inc642 StringRef PathStr(Path.begin(), Path.size());
643 if (PathStr.empty() || !PathStr.startswith("~"))
646 PathStr = PathStr.drop_front();
648 PathStr.take_until([](char c) { return path::is_separator(c); });
649 StringRef Remainder = PathStr.substr(Expr.size() + 1);
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));
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DPath.inc1356 StringRef PathStr(Path.begin(), Path.size());
1357 PathStr = PathStr.drop_front();
1358 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });