Searched refs:ASTBinaryExpression (Results 1 – 4 of 4) sorted by relevance
/external/skia/src/sksl/ast/ |
D | SkSLASTBinaryExpression.h | 19 struct ASTBinaryExpression : public ASTExpression { struct 20 ASTBinaryExpression(std::unique_ptr<ASTExpression> left, Token op, in ASTBinaryExpression() function
|
/external/skia/src/sksl/ |
D | SkSLParser.cpp | 1347 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in commaExpression() 1382 result = std::unique_ptr<ASTExpression>(new ASTBinaryExpression(std::move(result), in assignmentExpression() 1426 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in logicalOrExpression() 1443 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in logicalXorExpression() 1460 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in logicalAndExpression() 1477 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in bitwiseOrExpression() 1494 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in bitwiseXorExpression() 1511 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in bitwiseAndExpression() 1531 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in equalityExpression() 1557 result.reset(new ASTBinaryExpression(std::move(result), t, std::move(right))); in relationalExpression() [all …]
|
D | SkSLIRGenerator.h | 132 std::unique_ptr<Expression> convertBinaryExpression(const ASTBinaryExpression& expression);
|
D | SkSLIRGenerator.cpp | 826 return this->convertBinaryExpression((ASTBinaryExpression&) expr); in convertExpression() 1204 const ASTBinaryExpression& expression) { in convertBinaryExpression()
|