Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp604 class InMemoryNode { class
612 virtual ~InMemoryNode() = default;
625 class InMemoryFile : public InMemoryNode {
643 static bool classof(const InMemoryNode *N) { in classof()
650 class InMemoryHardLink : public InMemoryNode {
667 static bool classof(const InMemoryNode *N) { in classof()
691 static bool classof(const InMemoryNode *N) { in classof()
727 class InMemoryDirectory : public InMemoryNode {
744 InMemoryNode *getChild(StringRef Name) const { in getChild()
751 InMemoryNode *addChild(StringRef Name, std::unique_ptr<InMemoryNode> Child) { in addChild()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h464 class InMemoryNode; variable
481 ErrorOr<std::pair<llvm::SmallString<128>, const detail::InMemoryNode *>>
486 const detail::InMemoryNode *Node) in NamedNodeOrError()
495 const detail::InMemoryNode *operator*() const { return (*Value).second; }
506 using MakeNodeFn = llvm::function_ref<std::unique_ptr<detail::InMemoryNode>(