Home
last modified time | relevance | path

Searched refs:RPath (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileCollector.cpp129 sys::fs::create_directories(sys::path::parent_path(entry.RPath), in copyFiles()
146 sys::fs::create_directories(entry.RPath, in copyFiles()
155 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) { in copyFiles()
162 if (std::error_code EC = sys::fs::setPermissions(entry.RPath, *perms)) { in copyFiles()
169 copyAccessAndModificationTime(entry.RPath, Stat); in copyFiles()
DVirtualFileSystem.cpp1916 void writeEntry(StringRef VPath, StringRef RPath);
1967 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument
1973 << llvm::yaml::escape(RPath) << "\"\n"; in writeEntry()
2004 StringRef RPath = Entry.RPath; in write() local
2007 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write()
2009 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write()
2012 writeEntry(path::filename(Entry.VPath), RPath); in write()
2026 StringRef RPath = Entry.RPath; in write() local
2029 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write()
2031 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write()
[all …]
/third_party/rust/crates/pkg-config-rs/tests/
Drpath.pc5 Description: RPath example library
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DVirtualFileSystem.h509 YAMLVFSEntry(T1 &&VPath, T2 &&RPath) in YAMLVFSEntry()
510 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)) {} in YAMLVFSEntry()
512 std::string RPath; member