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() function
/external/skia/src/sksl/
DSkSLParser.h43 struct ASTWhileStatement;
144 std::unique_ptr<ASTWhileStatement> whileStatement();
DSkSLIRGenerator.h165 std::unique_ptr<Statement> convertWhile(const ASTWhileStatement& w);
DSkSLParser.cpp930 std::unique_ptr<ASTWhileStatement> Parser::whileStatement() { in whileStatement()
949 return std::unique_ptr<ASTWhileStatement>(new ASTWhileStatement(start.fPosition, in whileStatement()
DSkSLIRGenerator.cpp171 return this->convertWhile((ASTWhileStatement&) statement); in convertStatement()
350 std::unique_ptr<Statement> IRGenerator::convertWhile(const ASTWhileStatement& w) { in convertWhile()