Home
last modified time | relevance | path

Searched refs:ASTWhileStatement (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/sksl/ast/
DSkSLASTWhileStatement.h18 struct ASTWhileStatement : public ASTStatement { struct
19 ASTWhileStatement(Position position, std::unique_ptr<ASTExpression> test, in ASTWhileStatement() argument
/external/skia/src/sksl/
DSkSLParser.h44 struct ASTWhileStatement;
161 std::unique_ptr<ASTWhileStatement> whileStatement();
DSkSLIRGenerator.h154 std::unique_ptr<Statement> convertWhile(const ASTWhileStatement& w);
DSkSLParser.cpp1052 std::unique_ptr<ASTWhileStatement> Parser::whileStatement() { in whileStatement()
1071 return std::unique_ptr<ASTWhileStatement>(new ASTWhileStatement(start.fPosition, in whileStatement()
DSkSLIRGenerator.cpp181 return this->convertWhile((ASTWhileStatement&) statement); in convertStatement()
379 std::unique_ptr<Statement> IRGenerator::convertWhile(const ASTWhileStatement& w) { in convertWhile()