Searched refs:RealPath (Results 1 – 11 of 11) sorted by relevance
/external/clang/lib/Frontend/ |
D | ModuleDependencyCollector.cpp | 84 static bool real_path(StringRef SrcPath, SmallVectorImpl<char> &RealPath) { in real_path() argument 93 RealPath.swap(RPath); in real_path() 160 SmallString<256> RealPath; in getRealPath() local 169 if (!real_path(Dir, RealPath)) in getRealPath() 171 SymLinkMap[Dir] = RealPath.str(); in getRealPath() 173 RealPath = DirWithSymLink->second; in getRealPath() 176 path::append(RealPath, FileName); in getRealPath() 177 Result.swap(RealPath); in getRealPath() 199 SmallString<256> RealPath; in copyToRoot() local 200 if (!getRealPath(AbsoluteSrc, RealPath)) in copyToRoot() [all …]
|
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 561 SmallVectorImpl<char> *RealPath) { 569 if(!RealPath) 571 RealPath->clear(); 577 RealPath->append(Buffer, Buffer + strlen(Buffer)); 585 RealPath->append(Buffer, Buffer + CharCount); 589 RealPath->append(Buffer, Buffer + strlen(Buffer));
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Path.inc | 577 SmallVectorImpl<char> *RealPath) { 585 if(!RealPath) 587 RealPath->clear(); 593 RealPath->append(Buffer, Buffer + strlen(Buffer)); 601 RealPath->append(Buffer, Buffer + CharCount); 605 RealPath->append(Buffer, Buffer + strlen(Buffer));
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 705 SmallVectorImpl<char> *RealPath) { 735 if (RealPath) { 736 RealPath->clear(); 745 RealPath->append(RealPathUTF8.data(),
|
/external/llvm/lib/Support/Windows/ |
D | Path.inc | 711 SmallVectorImpl<char> *RealPath) { 741 if (RealPath) { 742 RealPath->clear(); 751 RealPath->append(RealPathUTF8.data(),
|
/external/libchrome/base/files/ |
D | file_util_posix.cc | 85 bool RealPath(const FilePath& path, FilePath* real_path) { in RealPath() function 677 if (!RealPath(path, &real_path_result)) in NormalizeFilePath()
|
/external/clang/include/clang/Basic/ |
D | VirtualFileSystem.h | 347 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
|
/external/clang/lib/Basic/ |
D | VirtualFileSystem.cpp | 1599 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { in addFileMapping() argument 1601 assert(sys::path::is_absolute(RealPath) && "real path not absolute"); in addFileMapping() 1603 Mappings.emplace_back(VirtualPath, RealPath); in addFileMapping()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | FileSystem.h | 657 SmallVectorImpl<char> *RealPath = nullptr);
|
/external/llvm/include/llvm/Support/ |
D | FileSystem.h | 646 SmallVectorImpl<char> *RealPath = nullptr);
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 1649 char RealPath[PATH_MAX + 1]; in getChildDeclContext() local 1650 RealPath[PATH_MAX] = 0; in getChildDeclContext() 1651 if (::realpath(File.c_str(), RealPath)) in getChildDeclContext() 1652 File = RealPath; in getChildDeclContext()
|