Lines Matching defs:Path
39 #include "llvm/Support/Path.h"
355 for (StringRef Path : PathsRef)
356 Paths.push_back(Path.str());
364 for (const std::string &Path : Paths) {
365 Log.push("Updating binaries at path " + Path);
366 if (Error Err = findBinaries(Path))
413 Error DebuginfodCollection::findBinaries(StringRef Path) {
415 sys::fs::recursive_directory_iterator I(Twine(Path), EC), E;
483 std::string Path = Loc->getValue();
484 return Path;
495 std::string Path = Loc->getValue();
496 return Path;
507 std::optional<std::string> Path = *PathOrErr;
508 if (!Path) {
517 Path = *PathOrErr;
520 if (Path)
521 return *Path;
538 std::optional<std::string> Path = *PathOrErr;
539 if (!Path) {
548 Path = *PathOrErr;
551 if (Path)
552 return *Path;