/external/llvm-project/compiler-rt/lib/profile/ |
D | InstrProfilingUtil.c | 269 lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix, in lprofApplyPathPrefix() argument 274 const char *StrippedPathStr = PathStr; in lprofApplyPathPrefix() 276 for (Level = 0, Ptr = PathStr + 1; Level < PrefixStrip; ++Ptr) { in lprofApplyPathPrefix()
|
D | InstrProfilingUtil.h | 53 void lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix,
|
/external/llvm/lib/Support/Unix/ |
D | Program.inc | 295 std::string PathStr = Program; 297 execve(PathStr.c_str(), 301 execv(PathStr.c_str(),
|
/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/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
D | Program.inc | 307 std::string PathStr = Program; 309 execve(PathStr.c_str(), const_cast<char **>(Argv), 312 execv(PathStr.c_str(), const_cast<char **>(Argv));
|
D | Path.inc | 617 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);
|
/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/llvm-project/llvm/lib/Support/Unix/ |
D | Program.inc | 305 std::string PathStr = std::string(Program); 307 execve(PathStr.c_str(), const_cast<char **>(Argv), 310 execv(PathStr.c_str(), const_cast<char **>(Argv));
|
D | Path.inc | 641 StringRef PathStr(Path.begin(), Path.size()); 642 if (PathStr.empty() || !PathStr.startswith("~")) 645 PathStr = PathStr.drop_front(); 647 PathStr.take_until([](char c) { return path::is_separator(c); }); 648 StringRef Remainder = PathStr.substr(Expr.size() + 1);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Path.cpp | 1115 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()
|
D | VirtualFileSystem.cpp | 2096 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()
|
/external/llvm-project/llvm/lib/Support/ |
D | Path.cpp | 1142 SmallString<128> PathStr = path::parent_path(Path); in replace_filename() local 1143 path::append(PathStr, Filename); in replace_filename() 1144 this->Path = std::string(PathStr.str()); in replace_filename()
|
D | VirtualFileSystem.cpp | 2208 SmallString<128> PathStr(Dir); in incrementContent() local 2209 llvm::sys::path::append(PathStr, (*Current)->getName()); in incrementContent() 2219 CurrentEntry = directory_entry(std::string(PathStr.str()), Type); in incrementContent()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 1295 StringRef PathStr(Path.begin(), Path.size()); 1296 PathStr = PathStr.drop_front(); 1297 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
|
/external/llvm-project/llvm/lib/Support/Windows/ |
D | Path.inc | 1352 StringRef PathStr(Path.begin(), Path.size()); 1353 PathStr = PathStr.drop_front(); 1354 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
|