Searched refs:IfStatementASTNode (Results 1 – 6 of 6) sorted by relevance
830 class IfStatementASTNode : public StatementASTNode833 IfStatementASTNode() : StatementASTNode(), m_ifStatements(), m_nextIf(), m_elseStatements() {} in IfStatementASTNode() function834 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…
1052 #pragma mark = IfStatementASTNode =1056 IfStatementASTNode::IfStatementASTNode(const IfStatementASTNode & other) in IfStatementASTNode() function in IfStatementASTNode1065 m_nextIf = dynamic_cast<IfStatementASTNode*>(other.m_nextIf->clone()); in IfStatementASTNode()
109 OperationSequence * convertIfStatement(IfStatementASTNode * statement);
658 IfStatementASTNode * ifStmt = dynamic_cast<IfStatementASTNode*>(statement); in convertOneStatement()869 OperationSequence * ConversionController::convertIfStatement(IfStatementASTNode * statement) in convertIfStatement()
672 IfStatementASTNode * ifStmt = new IfStatementASTNode();
2148 IfStatementASTNode * ifStmt = new IfStatementASTNode();