Searched refs:NegativeExprASTNode (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.cpp341 #pragma mark = NegativeExprASTNode =
343 NegativeExprASTNode::NegativeExprASTNode(const NegativeExprASTNode & other) function in class:NegativeExprASTNode
349 void NegativeExprASTNode::printTree(int indent) const
355 ExprASTNode * NegativeExprASTNode::reduce(EvalContext & context)
H A DElftosbAST.h327 class NegativeExprASTNode : public ExprASTNode class in namespace:elftosb
330 NegativeExprASTNode(ExprASTNode * expr) : ExprASTNode(), m_expr(expr) {} function in class:elftosb::NegativeExprASTNode
331 NegativeExprASTNode(const NegativeExprASTNode & other);
333 virtual ASTNode * clone() const { return new NegativeExprASTNode(*this); }
335 virtual std::string nodeName() const { return "NegativeExprASTNode"; }
H A Delftosb_parser.y950 $$ = new NegativeExprASTNode(dynamic_cast<ExprASTNode*>($2));
H A Delftosb_parser.tab.cpp2498 (yyval.m_ast) = new NegativeExprASTNode(dynamic_cast<ExprASTNode*>((yyvsp[0].m_ast)));

Completed in 143 milliseconds