Searched defs:VFS (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/Driver/
H A DDriver.h70 IntrusiveRefCntPtr<vfs::FileSystem> VFS; member in class:clang::driver::Driver
224 IntrusiveRefCntPtr<vfs::FileSystem> VFS = nullptr);
237 vfs::FileSystem &getVFS() const { return *VFS; }
/external/clang/lib/Tooling/
H A DTooling.cpp51 IntrusiveRefCntPtr<vfs::FileSystem> VFS) {
53 BinaryName, llvm::sys::getDefaultTargetTriple(), *Diagnostics, VFS);
356 // First insert all absolute paths into the in-memory VFS. These are global
400 // Now fill the in-memory VFS with the relative file mappings so it will
49 newDriver( clang::DiagnosticsEngine *Diagnostics, const char *BinaryName, IntrusiveRefCntPtr<vfs::FileSystem> VFS) argument
/external/clang/lib/Driver/
H A DDriver.cpp51 IntrusiveRefCntPtr<vfs::FileSystem> VFS)
52 : Opts(createDriverOptTable()), Diags(Diags), VFS(VFS), Mode(GCCMode),
63 // Provide a sane fallback if no VFS is specified.
64 if (!this->VFS)
65 this->VFS = vfs::getRealFileSystem();
663 SmallString<128> VFS; local
669 VFS = llvm::sys::path::filename(TempFile);
670 llvm::sys::path::append(VFS, "vfs", "vfs.yaml");
675 CrashReportInfo CrashInfo(TempFiles[0], VFS);
49 Driver(StringRef ClangExecutable, StringRef DefaultTargetTriple, DiagnosticsEngine &Diags, IntrusiveRefCntPtr<vfs::FileSystem> VFS) argument
[all...]
H A DToolChains.cpp1704 vfs::FileSystem &VFS; member in class:__anon1186::FilterNonExistent
1707 FilterNonExistent(StringRef Base, vfs::FileSystem &VFS) argument
1708 : Base(Base), VFS(VFS) {}
1710 return !VFS.exists(Base + M.gccSuffix() + "/crtbegin.o");
/external/clang/lib/Frontend/
H A DASTUnit.cpp673 IntrusiveRefCntPtr<vfs::FileSystem> VFS = vfs::getRealFileSystem(); local
674 AST->FileMgr = new FileManager(FileSystemOpts, VFS);
1553 IntrusiveRefCntPtr<vfs::FileSystem> VFS = local
1555 if (!VFS)
1559 Clang->setFileManager(new FileManager(Clang->getFileSystemOpts(), VFS));
1711 IntrusiveRefCntPtr<vfs::FileSystem> VFS = local
1713 if (!VFS)
1715 AST->FileMgr = new FileManager(AST->FileSystemOpts, VFS);
1982 IntrusiveRefCntPtr<vfs::FileSystem> VFS = local
1984 if (!VFS)
[all...]

Completed in 191 milliseconds