Searched refs:RealPath (Results 1 – 7 of 7) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/ |
| H A D | ModuleDependencyCollector.cpp | 103 static bool real_path(StringRef SrcPath, SmallVectorImpl<char> &RealPath) { in real_path() argument 112 RealPath.swap(RPath); in real_path() 181 SmallString<256> RealPath; in getRealPath() local 190 if (!real_path(Dir, RealPath)) in getRealPath() 192 SymLinkMap[Dir] = RealPath.str(); in getRealPath() 194 RealPath = DirWithSymLink->second; in getRealPath() 197 path::append(RealPath, FileName); in getRealPath() 198 Result.swap(RealPath); in getRealPath()
|
| /freebsd-12.1/contrib/llvm/lib/Support/Unix/ |
| H A D | Path.inc | 868 SmallVectorImpl<char> *RealPath) { 875 if(!RealPath) 877 RealPath->clear(); 883 RealPath->append(Buffer, Buffer + strlen(Buffer)); 891 RealPath->append(Buffer, Buffer + CharCount); 898 RealPath->append(Buffer, Buffer + strlen(Buffer)); 905 SmallVectorImpl<char> *RealPath) { 907 std::error_code EC = openFileForRead(Name, ResultFD, Flags, RealPath);
|
| /freebsd-12.1/contrib/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 369 SmallVectorImpl<char> &RealPath) { 370 RealPath.clear(); 385 return UTF16ToUTF8(Data, CountChars, RealPath); 1169 SmallVectorImpl<char> &RealPath) { 1176 EC = realPathFromHandle(File, RealPath); 1183 SmallVectorImpl<char> *RealPath) { 1184 Expected<HANDLE> NativeFile = openNativeFileForRead(Name, Flags, RealPath); 1189 SmallVectorImpl<char> *RealPath) { 1194 if (Result && RealPath) 1195 realPathFromHandle(*Result, *RealPath);
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | FileSystem.h | 1035 SmallVectorImpl<char> *RealPath = nullptr); 1051 SmallVectorImpl<char> *RealPath = nullptr);
|
| H A D | VirtualFileSystem.h | 743 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | GCOVProfiling.cpp | 491 SmallString<256> RealPath; in isFunctionInstrumented() local 497 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented() 501 RealFilename = RealPath; in isFunctionInstrumented()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | VirtualFileSystem.cpp | 1806 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { in addFileMapping() argument 1808 assert(sys::path::is_absolute(RealPath) && "real path not absolute"); in addFileMapping() 1810 Mappings.emplace_back(VirtualPath, RealPath); in addFileMapping()
|