| /src/external/apache2/llvm/dist/clang/lib/Driver/ |
| Distro.cpp | 23 static Distro::DistroType DetectOsRelease(llvm::vfs::FileSystem &VFS) { 25 VFS.getBufferForFile("/etc/os-release"); 27 File = VFS.getBufferForFile("/usr/lib/os-release"); 51 static Distro::DistroType DetectLsbRelease(llvm::vfs::FileSystem &VFS) { 53 VFS.getBufferForFile("/etc/lsb-release"); 97 static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS) { 102 Version = DetectOsRelease(VFS); [all...] |
| DarwinSDKInfo.cpp | 19 driver::parseDarwinSDKInfo(llvm::vfs::FileSystem &VFS, StringRef SDKRootPath) { 23 VFS.getBufferForFile(Filepath);
|
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| SanitizerSpecialCaseList.cpp | 19 llvm::vfs::FileSystem &VFS, 23 if (SSCL->createInternal(Paths, VFS, Error)) { 32 llvm::vfs::FileSystem &VFS) { 34 if (auto SSCL = create(Paths, VFS, Error))
|
| ProfileList.cpp | 28 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS, 33 llvm::vfs::FileSystem &VFS); 47 llvm::vfs::FileSystem &VFS, 50 if (PSCL->createInternal(Paths, VFS, Error)) 57 llvm::vfs::FileSystem &VFS) { 59 if (auto PSCL = create(Paths, VFS, Error) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| SanitizerSpecialCaseList.h | 25 namespace vfs { namespace in namespace:llvm 35 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS, 40 llvm::vfs::FileSystem &VFS);
|
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| Reproducer.h | 28 /// of this class is returned when reproducers are off. The VFS returned by 35 IntrusiveRefCntPtr<vfs::FileSystem> getVFS() const { return VFS; } 42 IntrusiveRefCntPtr<vfs::FileSystem> VFS; 45 /// Reproducer instance used to generate a new reproducer. The VFS returned by 61 /// Reproducer instance used to use an existing reproducer. The VFS returned by
|
| dsymutil.h | 38 parseDebugMap(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 44 bool dumpStab(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
|
| BinaryHolder.h | 41 BinaryHolder(IntrusiveRefCntPtr<vfs::FileSystem> VFS, bool Verbose = false) 42 : VFS(VFS), Verbose(Verbose) {} 60 Error load(IntrusiveRefCntPtr<vfs::FileSystem> VFS, StringRef Filename, 112 Error load(IntrusiveRefCntPtr<vfs::FileSystem> VFS, StringRef Filename, 141 IntrusiveRefCntPtr<vfs::FileSystem> VFS; [all...] |
| Reproducer.cpp | 26 Reproducer::Reproducer() : VFS(vfs::getRealFileSystem()) {} 33 VFS = FileCollector::createCollectorVFS(vfs::getRealFileSystem(), FC); 52 vfs::getRealFileSystem()->getBufferForFile(Mapping.str()); 59 VFS = llvm::vfs::getVFSFromYAML(std::move(Buffer.get()), nullptr, Mapping);
|
| MachOUtils.h | 44 bool generateDsymCompanion(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
|
| BinaryHolder.cpp | 44 Error BinaryHolder::ArchiveEntry::load(IntrusiveRefCntPtr<vfs::FileSystem> VFS, 52 : VFS->getBufferForFile(ArchiveFilename, -1, false); 89 Error BinaryHolder::ObjectEntry::load(IntrusiveRefCntPtr<vfs::FileSystem> VFS, 95 : VFS->getBufferForFile(Filename, -1, false); 100 llvm::ErrorOr<vfs::Status> Stat = VFS->status(Filename); 250 auto Err = AE.load(VFS, Filename, Timestamp, Verbose); 267 auto Err = OE.load(VFS, Filename, Timestamp, Verbose) [all...] |
| LinkUtils.h | 71 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = 72 vfs::getRealFileSystem();
|
| MachODebugMapParser.cpp | 26 MachODebugMapParser(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 32 PaperTrailWarnings(PaperTrailWarnings), BinHolder(VFS, Verbose), 601 parseDebugMap(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 608 MachODebugMapParser Parser(VFS, InputFile, Archs, PrependPath, 613 bool dumpStab(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 616 MachODebugMapParser Parser(VFS, InputFile, Archs, PrependPath, false);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
| DarwinSDKInfo.h | 35 Expected<Optional<DarwinSDKInfo>> parseDarwinSDKInfo(llvm::vfs::FileSystem &VFS,
|
| Distro.h | 92 /// Detects the distribution using specified VFS. 93 explicit Distro(llvm::vfs::FileSystem &VFS, const llvm::Triple &TargetOrHost);
|
| Driver.h | 32 namespace vfs { namespace in namespace:llvm 62 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS; 315 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr); 329 llvm::vfs::FileSystem &getVFS() const { return *VFS; }
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| PrecompiledPreamble.cpp | 56 IntrusiveRefCntPtr<llvm::vfs::FileSystem> 59 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) { 61 // so we create an in-memory VFS with just that and overlay it on top. 62 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> PCHFS( 63 new llvm::vfs::InMemoryFileSystem()); 65 IntrusiveRefCntPtr<llvm::vfs::OverlayFileSystem> Overlay( 66 new llvm::vfs::OverlayFileSystem(VFS)); 315 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS [all...] |
| CreateInvocationFromCommandLine.cpp | 29 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool ShouldRecoverOnErorrs, 44 "clang LLVM compiler", VFS);
|
| ASTUnit.cpp | 160 llvm::vfs::FileSystem *VFS, 169 auto FileStatus = VFS->status(FilePath); 176 auto MPathStatus = VFS->status(MPath); 181 BufferOwner = valueOrNull(VFS->getBufferForFile(RF.second, -1, true, isVolatile)); 192 auto MPathStatus = VFS->status(MPath); 206 BufferOwner = valueOrNull(VFS->getBufferForFile(FilePath, -1, true, isVolatile)); 778 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = 779 llvm::vfs::getRealFileSystem() [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
| PrecompiledPreamble.h | 30 namespace vfs { namespace in namespace:llvm 71 /// \param VFS An instance of vfs::FileSystem to be used for file 85 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 109 PreambleBounds Bounds, llvm::vfs::FileSystem &VFS) const; 112 /// main file to \p MainFileBuffer and updates \p VFS to ensure the preamble 120 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, [all...] |
| ASTUnit.h | 53 namespace vfs { namespace in namespace:llvm 57 } // namespace vfs 372 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS); 377 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool AllowRebuild = true, 709 /// \param VFS - A llvm::vfs::FileSystem to be used for all file accesses. 711 /// so in order for it to be loaded correctly, VFS should have access to 719 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) [all...] |
| Utils.h | 154 llvm::vfs::YAMLVFSWriter VFSWriter; 224 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr,
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| MSVC.cpp | 66 static bool canExecute(llvm::vfs::FileSystem &VFS, StringRef Path) { 67 auto Status = VFS.status(Path); 78 static std::string getHighestNumericTupleInDirectory(llvm::vfs::FileSystem &VFS, 84 for (llvm::vfs::directory_iterator DirIt = VFS.dir_begin(Directory, EC), 87 auto Status = VFS.status(DirIt->path()); 105 findVCToolChainViaCommandLine(llvm::vfs::FileSystem &VFS, const ArgList &Args [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| SpecialCaseList.h | 65 namespace vfs { namespace in namespace:llvm 74 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS, 83 createOrDie(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS); 110 vfs::FileSystem &VFS, std::string &Error);
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| SpecialCaseList.cpp | 75 llvm::vfs::FileSystem &FS, std::string &Error) { 92 llvm::vfs::FileSystem &FS) { 100 vfs::FileSystem &VFS, std::string &Error) { 104 VFS.getBufferForFile(Path);
|