Searched refs:ModeStatementASTNode (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/external/bsd/elftosb/dist/elftosb2/
H A DConversionController.h108 OperationSequence * convertModeStatement(ModeStatementASTNode * statement);
H A DElftosbAST.h860 class ModeStatementASTNode : public StatementASTNode class in namespace:elftosb
863 ModeStatementASTNode() : StatementASTNode(), m_modeExpr() {} function in class:elftosb::ModeStatementASTNode
864 ModeStatementASTNode(ExprASTNode * modeExpr) : StatementASTNode(), m_modeExpr(modeExpr) {} function in class:elftosb::ModeStatementASTNode
865 ModeStatementASTNode(const ModeStatementASTNode & other);
867 virtual ASTNode * clone() const { return new ModeStatementASTNode(*this); }
869 virtual std::string nodeName() const { return "ModeStatementASTNode"; }
H A DElftosbAST.cpp1069 #pragma mark = ModeStatementASTNode =
1071 ModeStatementASTNode::ModeStatementASTNode(const ModeStatementASTNode & other) function in class:ModeStatementASTNode
1077 void ModeStatementASTNode::printTree(int indent) const
H A DConversionController.cpp651 ModeStatementASTNode * mode = dynamic_cast<ModeStatementASTNode*>(statement);
824 OperationSequence * ConversionController::convertModeStatement(ModeStatementASTNode * statement)
H A Delftosb_parser.y648 $$ = new ModeStatementASTNode(dynamic_cast<ExprASTNode*>($2));
H A Delftosb_parser.tab.cpp2123 (yyval.m_ast) = new ModeStatementASTNode(dynamic_cast<ExprASTNode*>((yyvsp[0].m_ast)));

Completed in 214 milliseconds