clang API Documentation
Defines the virtual file system interface vfs::FileSystem. More...
#include "clang/Basic/LLVM.h"
#include "llvm/ADT/IntrusiveRefCntPtr.h"
#include "llvm/ADT/Optional.h"
#include "llvm/Support/ErrorOr.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/SourceMgr.h"
Go to the source code of this file.
Classes | |
class | clang::vfs::Status |
The result of a status operation. More... | |
class | clang::vfs::File |
Represents an open file. More... | |
struct | clang::vfs::detail::DirIterImpl |
An interface for virtual file systems to provide an iterator over the (non-recursive) contents of a directory. More... | |
class | clang::vfs::directory_iterator |
An input iterator over the entries in a virtual path, similar to llvm::sys::fs::directory_iterator. More... | |
class | clang::vfs::recursive_directory_iterator |
An input iterator over the recursive contents of a virtual path, similar to llvm::sys::fs::recursive_directory_iterator. More... | |
class | clang::vfs::FileSystem |
The virtual file system interface. More... | |
class | clang::vfs::OverlayFileSystem |
A file system that allows overlaying one AbstractFileSystem on top of another. More... | |
struct | clang::vfs::YAMLVFSEntry |
class | clang::vfs::YAMLVFSWriter |
Namespaces | |
namespace | llvm |
namespace | clang |
namespace | clang::vfs |
namespace | clang::vfs::detail |
Functions | |
IntrusiveRefCntPtr< FileSystem > | clang::vfs::getRealFileSystem () |
Gets an vfs::FileSystem for the 'real' file system, as seen by the operating system. | |
llvm::sys::fs::UniqueID | clang::vfs::getNextVirtualUniqueID () |
Get a globally unique ID for a virtual file or directory. | |
IntrusiveRefCntPtr< FileSystem > | clang::vfs::getVFSFromYAML (std::unique_ptr< llvm::MemoryBuffer > Buffer, llvm::SourceMgr::DiagHandlerTy DiagHandler, void *DiagContext=nullptr, IntrusiveRefCntPtr< FileSystem > ExternalFS=getRealFileSystem()) |
Gets a FileSystem for a virtual file system described in YAML format. |
Defines the virtual file system interface vfs::FileSystem.
Definition in file VirtualFileSystem.h.