Lines Matching refs:Path
430 SmallString<256> Path(ToolChain::getCompilerRTPath()); in getCompilerRT() local
431 llvm::sys::path::append(Path, "avr"); in getCompilerRT()
432 llvm::sys::path::append(Path, File.str()); in getCompilerRT()
433 return std::string(Path.str()); in getCompilerRT()
566 std::string Path(GCCParent + "/avr"); in findAVRLibcInstallation() local
567 if (llvm::sys::fs::is_directory(Path)) in findAVRLibcInstallation()
568 return Path; in findAVRLibcInstallation()
569 Path = GCCParent + "/../avr"; in findAVRLibcInstallation()
570 if (llvm::sys::fs::is_directory(Path)) in findAVRLibcInstallation()
571 return Path; in findAVRLibcInstallation()
576 std::string Path = getDriver().SysRoot + PossiblePath.str(); in findAVRLibcInstallation() local
577 if (llvm::sys::fs::is_directory(Path)) in findAVRLibcInstallation()
578 return Path; in findAVRLibcInstallation()