HomeSort by: relevance | last modified time | path
    Searched refs:IfStatementASTNode (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/elftosb/dist/elftosb2/
ConversionController.h 109 OperationSequence * convertIfStatement(IfStatementASTNode * statement);
ElftosbAST.h 830 class IfStatementASTNode : public StatementASTNode
833 IfStatementASTNode() : StatementASTNode(), m_ifStatements(), m_nextIf(), m_elseStatements() {}
834 IfStatementASTNode(const IfStatementASTNode & other);
836 virtual ASTNode * clone() const { return new IfStatementASTNode(*this); }
844 void setNextIf(IfStatementASTNode * nextIf) { m_nextIf = nextIf; }
845 IfStatementASTNode * getNextIf() { return m_nextIf; }
853 smart_ptr<IfStatementASTNode> m_nextIf; //!< Link to next "else if". If this is non-NULL then #m_elseStatements must be NULL and vice-versa.
ElftosbAST.cpp 1052 #pragma mark = IfStatementASTNode =
1056 IfStatementASTNode::IfStatementASTNode(const IfStatementASTNode & other)
1065 m_nextIf = dynamic_cast<IfStatementASTNode*>(other.m_nextIf->clone());
elftosb_parser.y 672 IfStatementASTNode * ifStmt = new IfStatementASTNode();
ConversionController.cpp 658 IfStatementASTNode * ifStmt = dynamic_cast<IfStatementASTNode*>(statement);
869 OperationSequence * ConversionController::convertIfStatement(IfStatementASTNode * statement)
elftosb_parser.tab.cpp 2151 IfStatementASTNode * ifStmt = new IfStatementASTNode();

Completed in 36 milliseconds