Searched refs:PathStr (Results 1 – 5 of 5) sorted by relevance
642 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);
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));
1140 SmallString<128> PathStr = path::parent_path(Path); in replace_filename() local1141 path::append(PathStr, Filename); in replace_filename()1142 this->Path = std::string(PathStr.str()); in replace_filename()
1061 SmallString<128> PathStr(Dir); in incrementImpl() local1062 llvm::sys::path::append(PathStr, (*Current)->getName()); in incrementImpl()1074 CurrentEntry = directory_entry(std::string(PathStr.str()), Type); in incrementImpl()
1356 StringRef PathStr(Path.begin(), Path.size());1357 PathStr = PathStr.drop_front();1358 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });