Home
last modified time | relevance | path

Searched refs:IfStatementASTNode (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.h830 class IfStatementASTNode : public StatementASTNode
833 IfStatementASTNode() : StatementASTNode(), m_ifStatements(), m_nextIf(), m_elseStatements() {} in IfStatementASTNode() function
834 IfStatementASTNode(const IfStatementASTNode & other);
836 virtual ASTNode * clone() const { return new IfStatementASTNode(*this); } in clone()
844 void setNextIf(IfStatementASTNode * nextIf) { m_nextIf = nextIf; } in setNextIf()
845 IfStatementASTNode * getNextIf() { return m_nextIf; } in getNextIf()
853 …smart_ptr<IfStatementASTNode> m_nextIf; //!< Link to next "else if". If this is non-NULL then #m_e…
H A DElftosbAST.cpp1052 #pragma mark = IfStatementASTNode =
1056 IfStatementASTNode::IfStatementASTNode(const IfStatementASTNode & other) in IfStatementASTNode() function in IfStatementASTNode
1065 m_nextIf = dynamic_cast<IfStatementASTNode*>(other.m_nextIf->clone()); in IfStatementASTNode()
H A DConversionController.h109 OperationSequence * convertIfStatement(IfStatementASTNode * statement);
H A DConversionController.cpp658 IfStatementASTNode * ifStmt = dynamic_cast<IfStatementASTNode*>(statement); in convertOneStatement()
869 OperationSequence * ConversionController::convertIfStatement(IfStatementASTNode * statement) in convertIfStatement()
H A Delftosb_parser.y672 IfStatementASTNode * ifStmt = new IfStatementASTNode();
H A Delftosb_parser.tab.cpp2148 IfStatementASTNode * ifStmt = new IfStatementASTNode();