Home
last modified time | relevance | path

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

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