Home
last modified time | relevance | path

Searched refs:RealPath (Results 1 – 12 of 12) sorted by relevance

/freebsd-src/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.h46 SmallString<256> RealPath; in resolve() local
47 sys::fs::real_path(ParentPath, RealPath); in resolve()
49 {ParentPath, std::string(RealPath.c_str(), RealPath.size())}); in resolve()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCollector.h116 void addFileToMapping(StringRef VirtualPath, StringRef RealPath) { in addFileToMapping() argument
118 VFSWriter.addDirectoryMapping(VirtualPath, RealPath); in addFileToMapping()
120 VFSWriter.addFileMapping(VirtualPath, RealPath); in addFileToMapping()
H A DVirtualFileSystem.h1111 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory);
1116 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
1117 void addDirectoryMapping(StringRef VirtualPath, StringRef RealPath);
H A DFileSystem.h1139 /// @param RealPath If nonnull, extra work is done to determine the real path
1146 SmallVectorImpl<char> *RealPath = nullptr);
1155 /// @param RealPath If nonnull, extra work is done to determine the real path
1162 SmallVectorImpl<char> *RealPath = nullptr);
/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp67 SmallString<256> RealPath; in updateWithRealPath() local
72 if (sys::fs::real_path(Directory, RealPath)) in updateWithRealPath()
74 CachedDirs[Directory] = std::string(RealPath); in updateWithRealPath()
76 RealPath = DirWithSymlink->second; in updateWithRealPath()
84 sys::path::append(RealPath, Filename); in updateWithRealPath()
87 Path.swap(RealPath); in updateWithRealPath()
H A DVirtualFileSystem.cpp2724 void YAMLVFSWriter::addEntry(StringRef VirtualPath, StringRef RealPath, in writeEntry()
2727 assert(sys::path::is_absolute(RealPath) && "real path not absolute"); in writeEntry()
2729 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory); in writeEntry()
2732 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { in writeEntry()
2733 addEntry(VirtualPath, RealPath, /*IsDirectory=*/false);
2737 StringRef RealPath) { in write()
2738 addEntry(VirtualPath, RealPath, /*IsDirectory=*/true); in write()
2643 addEntry(StringRef VirtualPath,StringRef RealPath,bool IsDirectory) addEntry() argument
2651 addFileMapping(StringRef VirtualPath,StringRef RealPath) addFileMapping() argument
2656 addDirectoryMapping(StringRef VirtualPath,StringRef RealPath) addDirectoryMapping() argument
/freebsd-src/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/
H A DDirectoryWatcher-mac.cpp179 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()
/freebsd-src/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc158 SmallString<256> RealPath;
159 sys::fs::real_path(PathNameUTF8, RealPath);
160 if (RealPath.size())
161 return std::string(RealPath);
384 SmallVectorImpl<char> &RealPath) {
385 RealPath.clear();
406 if (std::error_code EC = UTF16ToUTF8(Data, CountChars, RealPath))
409 llvm::sys::path::make_preferred(RealPath);
1261 SmallVectorImpl<char> &RealPath) {
1268 EC = realPathFromHandle(File, RealPath);
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc1132 SmallVectorImpl<char> *RealPath) {
1139 if (!RealPath)
1141 RealPath->clear();
1147 RealPath->append(Buffer, Buffer + strlen(Buffer));
1156 RealPath->append(Buffer, Buffer + CharCount);
1164 RealPath->append(Buffer, Buffer + strlen(Buffer));
1173 SmallVectorImpl<char> *RealPath) {
1175 std::error_code EC = openFileForRead(Name, ResultFD, Flags, RealPath);
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp482 SmallString<256> RealPath; in isFunctionInstrumented() local
488 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented()
492 RealFilename = RealPath; in isFunctionInstrumented()
/freebsd-src/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp214 SmallString<256> RealPath; in getFileName() local
215 sys::fs::real_path(ParentPath, RealPath); in getFileName()
218 .insert({ParentPath, GlobalStrings.insert(RealPath).first}) in getFileName()
/freebsd-src/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp3042 SmallString<256> RealPath; in addDeviceDependences()
3043 llvm::sys::fs::real_path(IA->getInputArg().getValue(), RealPath, in addDeviceDependences()
3045 Hasher.update(RealPath); in addDeviceDependences()
3005 SmallString<256> RealPath; addDeviceDependences() local