LLVM  8.0.1
Public Types | Public Member Functions | Static Public Member Functions | List of all members
llvm::vfs::detail::InMemoryDirectory Class Reference
Inheritance diagram for llvm::vfs::detail::InMemoryDirectory:
Inheritance graph
[legend]
Collaboration diagram for llvm::vfs::detail::InMemoryDirectory:
Collaboration graph
[legend]

Public Types

using const_iterator = decltype(Entries)::const_iterator
 

Public Member Functions

 InMemoryDirectory (Status Stat)
 
Status getStatus (StringRef RequestedName) const
 Return the Status for this node. More...
 
InMemoryNodegetChild (StringRef Name)
 
InMemoryNodeaddChild (StringRef Name, std::unique_ptr< InMemoryNode > Child)
 
const_iterator begin () const
 
const_iterator end () const
 
std::string toString (unsigned Indent) const override
 
- Public Member Functions inherited from llvm::vfs::detail::InMemoryNode
 InMemoryNode (llvm::StringRef FileName, InMemoryNodeKind Kind)
 
virtual ~InMemoryNode ()=default
 
StringRef getFileName () const
 Get the filename of this node (the name without the directory part). More...
 
InMemoryNodeKind getKind () const
 

Static Public Member Functions

static bool classof (const InMemoryNode *N)
 

Detailed Description

Definition at line 577 of file VirtualFileSystem.cpp.

Member Typedef Documentation

◆ const_iterator

Definition at line 603 of file VirtualFileSystem.cpp.

Constructor & Destructor Documentation

◆ InMemoryDirectory()

llvm::vfs::detail::InMemoryDirectory::InMemoryDirectory ( Status  Stat)
inline

Definition at line 582 of file VirtualFileSystem.cpp.

Member Function Documentation

◆ addChild()

InMemoryNode* llvm::vfs::detail::InMemoryDirectory::addChild ( StringRef  Name,
std::unique_ptr< InMemoryNode Child 
)
inline

◆ begin()

const_iterator llvm::vfs::detail::InMemoryDirectory::begin ( ) const
inline

◆ classof()

static bool llvm::vfs::detail::InMemoryDirectory::classof ( const InMemoryNode N)
inlinestatic

◆ end()

const_iterator llvm::vfs::detail::InMemoryDirectory::end ( ) const
inline

◆ getChild()

InMemoryNode* llvm::vfs::detail::InMemoryDirectory::getChild ( StringRef  Name)
inline

◆ getStatus()

Status llvm::vfs::detail::InMemoryDirectory::getStatus ( StringRef  RequestedName) const
inline

Return the Status for this node.

RequestedName should be the name through which the caller referred to this node. It will override Status::Name in the return value, to mimic the behavior of RealFile.

Definition at line 588 of file VirtualFileSystem.cpp.

◆ toString()

std::string llvm::vfs::detail::InMemoryDirectory::toString ( unsigned  Indent) const
inlineoverridevirtual

Implements llvm::vfs::detail::InMemoryNode.

Definition at line 608 of file VirtualFileSystem.cpp.

References llvm::vfs::Status::getName().


The documentation for this class was generated from the following file: