/external/clang/unittests/libclang/ |
D | LibclangTest.cpp | 49 void map(const char *VPath, const char *RPath) { in map() 50 CXErrorCode Err = clang_VirtualFileOverlay_addFileMapping(VFO, VPath, RPath); in map() 54 void mapError(const char *VPath, const char *RPath, CXErrorCode ExpErr) { in mapError() 55 CXErrorCode Err = clang_VirtualFileOverlay_addFileMapping(VFO, VPath, RPath); in mapError()
|
/external/clang/include/clang/Basic/ |
D | VirtualFileSystem.h | 332 template <typename T1, typename T2> YAMLVFSEntry(T1 &&VPath, T2 &&RPath) in YAMLVFSEntry() 333 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)) {} in YAMLVFSEntry() 334 std::string VPath; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileCollector.cpp | 137 if (std::error_code EC = sys::fs::status(entry.VPath, Stat)) { in copyFiles() 155 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) { in copyFiles() 161 if (auto perms = sys::fs::getPermissions(entry.VPath)) { in copyFiles()
|
D | VirtualFileSystem.cpp | 1866 SmallString<128> VPath; in getVFSEntries() local 1868 llvm::sys::path::append(VPath, Comp); in getVFSEntries() 1869 Entries.push_back(YAMLVFSEntry(VPath.c_str(), FE->getExternalContentsPath())); in getVFSEntries() 1916 void writeEntry(StringRef VPath, StringRef RPath); 1967 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument 1971 OS.indent(Indent + 2) << "'name': \"" << llvm::yaml::escape(VPath) << "\",\n"; in writeEntry() 2002 startDirectory(path::parent_path(Entry.VPath)); in write() 2012 writeEntry(path::filename(Entry.VPath), RPath); in write() 2015 StringRef Dir = path::parent_path(Entry.VPath); in write() 2033 writeEntry(path::filename(Entry.VPath), RPath); in write() [all …]
|
/external/llvm-project/clang/include/clang/Frontend/ |
D | Utils.h | 168 virtual void addFileMapping(StringRef VPath, StringRef RPath) { in addFileMapping() argument 169 VFSWriter.addFileMapping(VPath, RPath); in addFileMapping()
|
/external/llvm-project/llvm/lib/Support/ |
D | FileCollector.cpp | 166 if (std::error_code EC = sys::fs::status(entry.VPath, Stat)) { in copyFiles() 196 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) { in copyFiles() 202 if (auto perms = sys::fs::getPermissions(entry.VPath)) { in copyFiles()
|
D | VirtualFileSystem.cpp | 1950 SmallString<128> VPath; in getVFSEntries() local 1952 llvm::sys::path::append(VPath, Comp); in getVFSEntries() 1953 Entries.push_back(YAMLVFSEntry(VPath.c_str(), FE->getExternalContentsPath())); in getVFSEntries() 2010 void writeEntry(StringRef VPath, StringRef RPath); 2061 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument 2065 OS.indent(Indent + 2) << "'name': \"" << llvm::yaml::escape(VPath) << "\",\n"; in writeEntry() 2098 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath) in write() 2111 writeEntry(path::filename(Entry.VPath), RPath); in write() 2117 Entry.IsDirectory ? Entry.VPath : path::parent_path(Entry.VPath); in write() 2143 writeEntry(path::filename(Entry.VPath), RPath); in write() [all …]
|
/external/clang/include/clang/Frontend/ |
D | Utils.h | 136 void addFileMapping(StringRef VPath, StringRef RPath) { in addFileMapping() argument 137 VFSWriter.addFileMapping(VPath, RPath); in addFileMapping()
|
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
D | ModuleDependencyCollector.h | 32 void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {} in addFileMapping() argument
|
/external/ImageMagick/Magick++/lib/ |
D | Drawable.cpp | 130 Magick::VPath::VPath ( void ) in VPath() function in Magick::VPath 136 Magick::VPath::VPath ( const Magick::VPathBase& original_ ) in VPath() function in Magick::VPath 142 /* virtual */ Magick::VPath::~VPath ( void ) in ~VPath() 149 Magick::VPath::VPath ( const Magick::VPath& original_ ) in VPath() function in Magick::VPath 155 Magick::VPath& Magick::VPath::operator= (const Magick::VPath& original_ ) in operator =() 167 void Magick::VPath::operator()( MagickCore::DrawingWand * context_ ) const in operator ()()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Drawable.h | 182 class MagickPPExport VPath 186 VPath ( void ); 189 VPath ( const VPathBase& original_ ); 192 virtual ~VPath ( void ); 195 VPath ( const VPath& original_ ); 198 VPath& operator= (const VPath& original_ ); 207 typedef std::vector<Magick::VPath> VPathList; 212 std::allocator<Magick::VPath>;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | VirtualFileSystem.h | 509 YAMLVFSEntry(T1 &&VPath, T2 &&RPath) in YAMLVFSEntry() 510 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)) {} in YAMLVFSEntry() 511 std::string VPath; member
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | VirtualFileSystem.h | 511 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false) 512 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)), in VPath() function 514 std::string VPath; member
|
/external/llvm-project/clang/unittests/libclang/ |
D | LibclangTest.cpp | 54 void map(const char *VPath, const char *RPath) { in map() 55 CXErrorCode Err = clang_VirtualFileOverlay_addFileMapping(VFO, VPath, RPath); in map() 59 void mapError(const char *VPath, const char *RPath, CXErrorCode ExpErr) { in mapError() 60 CXErrorCode Err = clang_VirtualFileOverlay_addFileMapping(VFO, VPath, RPath); in mapError()
|
/external/llvm-project/llvm/unittests/Support/ |
D | FileCollectorTest.cpp | 25 return LHS.VPath == RHS.VPath && LHS.RPath == RHS.RPath; in operator ==()
|
/external/clang/lib/Basic/ |
D | VirtualFileSystem.cpp | 1616 void writeEntry(StringRef VPath, StringRef RPath); 1664 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument 1668 OS.indent(Indent + 2) << "'name': \"" << llvm::yaml::escape(VPath) << "\",\n"; in writeEntry() 1699 startDirectory(path::parent_path(Entry.VPath)); in write() 1709 writeEntry(path::filename(Entry.VPath), RPath); in write() 1712 StringRef Dir = path::parent_path(Entry.VPath); in write() 1730 writeEntry(path::filename(Entry.VPath), RPath); in write() 1747 return LHS.VPath < RHS.VPath; in write()
|
/external/ImageMagick/Magick++/demo/ |
D | piddle.cpp | 104 std::vector<VPath> path; in main()
|
/external/ltp/doc/ |
D | build-system-guide.txt | 199 link:http://www.gnu.org/software/make/manual/make.html#Directory-Search[VPath Use]
|
/external/llvm-project/clang/lib/Frontend/ |
D | CompilerInstance.cpp | 218 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()
|