Home
last modified time | relevance | path

Searched refs:InMemoryNode (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DVirtualFileSystem.cpp602 class InMemoryNode { class
610 virtual ~InMemoryNode() = default;
623 class InMemoryFile : public InMemoryNode {
641 static bool classof(const InMemoryNode *N) { in classof()
648 class InMemoryHardLink : public InMemoryNode {
665 static bool classof(const InMemoryNode *N) { in classof()
689 static bool classof(const InMemoryNode *N) { in classof()
725 class InMemoryDirectory : public InMemoryNode {
742 InMemoryNode *getChild(StringRef Name) const { in getChild()
749 InMemoryNode *addChild(StringRef Name, std::unique_ptr<InMemoryNode> Child) { in addChild()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DVirtualFileSystem.h465 class InMemoryNode; variable
482 ErrorOr<std::pair<llvm::SmallString<128>, const detail::InMemoryNode *>>
487 const detail::InMemoryNode *Node) in NamedNodeOrError()
496 const detail::InMemoryNode *operator*() const { return (*Value).second; }
507 using MakeNodeFn = llvm::function_ref<std::unique_ptr<detail::InMemoryNode>(