Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.h530 class ConstASTNode : public ASTNode
533 ConstASTNode() : ASTNode() {} in ConstASTNode() function
534 ConstASTNode(const ConstASTNode & other) : ASTNode(other) {} in ConstASTNode() function
542 class ExprConstASTNode : public ConstASTNode
545 ExprConstASTNode(ExprASTNode * expr) : ConstASTNode(), m_expr(expr) {} in ExprConstASTNode()
563 class StringConstASTNode : public ConstASTNode
566 StringConstASTNode(std::string * value) : ConstASTNode(), m_value(value) {} in StringConstASTNode()
584 class BlobConstASTNode : public ConstASTNode
587 BlobConstASTNode(Blob * value) : ConstASTNode(), m_blob(value) {} in BlobConstASTNode()
608 class IVTConstASTNode : public ConstASTNode
[all …]
H A DElftosbAST.cpp868 : ConstASTNode(other), m_expr() in ExprConstASTNode()
875 ConstASTNode::printTree(indent); in printTree()
882 : ConstASTNode(other), m_value() in StringConstASTNode()
896 : ConstASTNode(other), m_blob() in BlobConstASTNode()
913 : ConstASTNode(other), m_fields() in IVTConstASTNode()
934 m_value = dynamic_cast<ConstASTNode*>(other.m_value->clone()); in AssignmentASTNode()