HomeSort by: relevance | last modified time | path
    Searched defs:VFS (Results 1 - 8 of 8) sorted by relevancy

  /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
LinkUtils.h 71 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS =
72 vfs::getRealFileSystem();
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...]
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
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/
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/llvm/lib/Support/
VirtualFileSystem.cpp 57 using namespace llvm::vfs;
346 IntrusiveRefCntPtr<FileSystem> vfs::getRealFileSystem() {
351 std::unique_ptr<FileSystem> vfs::createPhysicalFileSystem() {
357 class RealFSDirIter : public llvm::vfs::detail::DirIterImpl {
451 llvm::vfs::detail::DirIterImpl::~DirIterImpl() = default;
456 class CombiningDirIterImpl : public llvm::vfs::detail::DirIterImpl {
457 using FileSystemPtr = llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem>;
545 namespace vfs { namespace in namespace:llvm
615 /// Adapt a InMemoryFile for VFS' File interface. The goal is to make
908 class InMemoryDirIterator : public llvm::vfs::detail::DirIterImpl
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Driver.cpp 134 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS)
135 : Diags(Diags), VFS(std::move(VFS)), Mode(GCCMode),
145 // Provide a sane fallback if no VFS is specified.
146 if (!this->VFS)
147 this->VFS = llvm::vfs::getRealFileSystem();
1093 if (VFS->setCurrentWorkingDirectory(WD->getValue()))
1459 SmallString<128> VFS;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.cpp 972 llvm::vfs::FileSystem &VFS;
975 FilterNonExistent(StringRef Base, StringRef File, llvm::vfs::FileSystem &VFS)
976 : Base(Base), File(File), VFS(VFS) {}
978 return !VFS.exists(Base + M.gccSuffix() + File);
1111 static bool findMipsAndroidMultilibs(llvm::vfs::FileSystem &VFS, StringRef Path,
1139 if (VFS.exists(Path + "/mips-r6")
    [all...]

Completed in 36 milliseconds