Home
last modified time | relevance | path

Searched refs:ASTBinaryExpression (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/sksl/ast/
DSkSLASTBinaryExpression.h19 struct ASTBinaryExpression : public ASTExpression { struct
20 ASTBinaryExpression(std::unique_ptr<ASTExpression> left, Token op, in ASTBinaryExpression() function
/external/skia/src/sksl/
DSkSLParser.cpp1347 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 …]
DSkSLIRGenerator.h132 std::unique_ptr<Expression> convertBinaryExpression(const ASTBinaryExpression& expression);
DSkSLIRGenerator.cpp826 return this->convertBinaryExpression((ASTBinaryExpression&) expr); in convertExpression()
1204 const ASTBinaryExpression& expression) { in convertBinaryExpression()