Searched defs:IfStatement (Results 1 – 7 of 7) sorted by relevance
19 struct IfStatement : public Statement { struct20 IfStatement(int offset, bool isStatic, std::unique_ptr<Expression> test, in IfStatement() argument29 return std::unique_ptr<Statement>(new IfStatement(fOffset, fIsStatic, fTest->clone(), in clone() argument33 String description() const override { in description()45 bool fIsStatic;46 std::unique_ptr<Expression> fTest;47 std::unique_ptr<Statement> fIfTrue;49 std::unique_ptr<Statement> fIfFalse;51 typedef Statement INHERITED;
25 IfStatement(int offset, bool isStatic, std::unique_ptr<Expression> test, in IfStatement() function
274 IfStatement() : Statement(NodeKind::IfStatement) {} in IfStatement() function
599 const auto *IfStatement = Result.Nodes.getNodeAs<IfStmt>(IfStmtId); in replaceWithThenStatement() local607 const auto *IfStatement = Result.Nodes.getNodeAs<IfStmt>(IfStmtId); in replaceWithElseStatement() local
3934 final public IfStmt IfStatement() {Expression condition; in IfStatement() method in ASTParser
4044 final public IfStmt IfStatement() { in IfStatement() method in ASTParser
4310 final public IfStmt IfStatement() throws ParseException {Expression condition; in IfStatement() method in GeneratedJavaParser