Home
last modified time | relevance | path

Searched defs:NodeArrayNode (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h605 struct NodeArrayNode : public Node { struct
606 NodeArrayNode() : Node(NodeKind::NodeArray) {} in NodeArrayNode() function
630 NodeArrayNode *Components = nullptr; argument
H A DItaniumDemangle.h369 struct NodeArrayNode : Node { struct
371 NodeArrayNode(NodeArray Array_) : Node(KNodeArrayNode), Array(Array_) {} in NodeArrayNode() argument
373 template<typename Fn> void match(Fn F) const { F(Array); } in match()
375 void printLeft(OutputBuffer &OB) const override { Array.printWithComma(OB); } in printLeft()