Home
last modified time | relevance | path

Searched defs:IfStatement (Results 1 – 5 of 5) sorted by relevance

/external/skqp/src/sksl/ir/
DSkSLIfStatement.h19 struct IfStatement : public Statement { struct
20 IfStatement(int offset, bool isStatic, std::unique_ptr<Expression> test, in IfStatement() function
28 String description() const override { in description()
40 bool fIsStatic;
41 std::unique_ptr<Expression> fTest;
42 std::unique_ptr<Statement> fIfTrue;
44 std::unique_ptr<Statement> fIfFalse;
46 typedef Statement INHERITED;
/external/skia/src/sksl/ir/
DSkSLIfStatement.h19 struct IfStatement : public Statement { struct
20 IfStatement(int offset, bool isStatic, std::unique_ptr<Expression> test, in IfStatement() argument
28 String description() const override { in description()
40 bool fIsStatic;
41 std::unique_ptr<Expression> fTest;
42 std::unique_ptr<Statement> fIfTrue;
44 std::unique_ptr<Statement> fIfFalse;
46 typedef Statement INHERITED;
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
DASTParser.java3934 final public IfStmt IfStatement() {Expression condition; in IfStatement() method in ASTParser
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
DASTParser.java4044 final public IfStmt IfStatement() { in IfStatement() method in ASTParser
/external/v8/src/ast/
Dast.h1044 IfStatement(Expression* condition, Statement* then_statement, in IfStatement() function