/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
H A D | CFBundle.cpp | 121 SmallString<256> RealPath; in SetFromPath() local 122 sys::fs::real_path(Path, RealPath, /*expand_tilde*/ true); in SetFromPath() 127 kCFAllocatorDefault, (const UInt8 *)RealPath.data(), RealPath.size(), in SetFromPath() 140 sys::path::remove_filename(RealPath); in SetFromPath() 141 } while (RealPath != sys::path::root_name(RealPath)); in SetFromPath()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/ |
H A D | DWARFLinkerDeclContext.h | 43 SmallString<256> RealPath; in resolve() local 44 sys::fs::real_path(ParentPath, RealPath); in resolve() 46 {ParentPath, std::string(RealPath.c_str(), RealPath.size())}); in resolve()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | FileCollector.cpp | 65 SmallString<256> RealPath; in updateWithRealPath() local 70 if (sys::fs::real_path(Directory, RealPath)) in updateWithRealPath() 72 CachedDirs[Directory] = std::string(RealPath.str()); in updateWithRealPath() 74 RealPath = DirWithSymlink->second; in updateWithRealPath() 82 sys::path::append(RealPath, Filename); in updateWithRealPath() 85 Path.swap(RealPath); in updateWithRealPath()
|
H A D | VirtualFileSystem.cpp | 2149 void YAMLVFSWriter::addEntry(StringRef VirtualPath, StringRef RealPath, in addEntry() argument 2152 assert(sys::path::is_absolute(RealPath) && "real path not absolute"); in addEntry() 2154 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory); in addEntry() 2157 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { in addFileMapping() argument 2158 addEntry(VirtualPath, RealPath, /*IsDirectory=*/false); in addFileMapping() 2162 StringRef RealPath) { in addDirectoryMapping() argument 2163 addEntry(VirtualPath, RealPath, /*IsDirectory=*/true); in addDirectoryMapping()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | FileCollector.h | 117 void addFileToMapping(StringRef VirtualPath, StringRef RealPath) { in addFileToMapping() argument 119 VFSWriter.addDirectoryMapping(VirtualPath, RealPath); in addFileToMapping() 121 VFSWriter.addFileMapping(VirtualPath, RealPath); in addFileToMapping()
|
H A D | VirtualFileSystem.h | 879 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory); 884 void addFileMapping(StringRef VirtualPath, StringRef RealPath); 885 void addDirectoryMapping(StringRef VirtualPath, StringRef RealPath);
|
H A D | FileSystem.h | 1126 SmallVectorImpl<char> *RealPath = nullptr); 1142 SmallVectorImpl<char> *RealPath = nullptr);
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/mac/ |
H A D | DirectoryWatcher-mac.cpp | 179 std::string RealPath; in createFSEventStream() local 185 RealPath = Buffer; in createFSEventStream() 187 RealPath = Path.str(); in createFSEventStream() 192 Context.info = new EventStreamContextData(std::move(RealPath), Receiver); in createFSEventStream()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/ |
H A D | Path.inc | 369 SmallVectorImpl<char> &RealPath) { 370 RealPath.clear(); 391 return UTF16ToUTF8(Data, CountChars, RealPath); 1211 SmallVectorImpl<char> &RealPath) { 1218 EC = realPathFromHandle(File, RealPath); 1225 SmallVectorImpl<char> *RealPath) { 1226 Expected<HANDLE> NativeFile = openNativeFileForRead(Name, Flags, RealPath); 1231 SmallVectorImpl<char> *RealPath) { 1236 if (Result && RealPath) 1237 realPathFromHandle(*Result, *RealPath);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/ |
H A D | Path.inc | 1096 SmallVectorImpl<char> *RealPath) { 1103 if(!RealPath) 1105 RealPath->clear(); 1111 RealPath->append(Buffer, Buffer + strlen(Buffer)); 1119 RealPath->append(Buffer, Buffer + CharCount); 1126 RealPath->append(Buffer, Buffer + strlen(Buffer)); 1133 SmallVectorImpl<char> *RealPath) { 1135 std::error_code EC = openFileForRead(Name, ResultFD, Flags, RealPath);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
H A D | GCOVProfiling.cpp | 535 SmallString<256> RealPath; in isFunctionInstrumented() local 541 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented() 545 RealFilename = RealPath; in isFunctionInstrumented()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ |
H A D | Driver.cpp | 2565 SmallString<256> RealPath; in addDeviceDepences() local 2566 llvm::sys::fs::real_path(IA->getInputArg().getValue(), RealPath, in addDeviceDepences() 2568 Hasher.update(RealPath); in addDeviceDepences()
|