Home
last modified time | relevance | path

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

/aosp_15_r20/external/skia/src/sksl/
H A DSkSLOperator.cpp223 bool Operator::determineBinaryType(const Context& context, in determineBinaryType() function in SkSL::Operator
297 if (!this->determineBinaryType(context, left.componentType(), right.componentType(), in determineBinaryType()
329 if (!this->determineBinaryType(context, left.componentType(), right, in determineBinaryType()
345 if (!this->determineBinaryType(context, left, right.componentType(), in determineBinaryType()
H A DSkSLOperator.h142 bool determineBinaryType(const Context& context,
/aosp_15_r20/external/skia/src/sksl/ir/
H A DSkSLBinaryExpression.cpp52 if (!op.determineBinaryType(context, *rawLeftType, *rawRightType, in Convert()
106 SkAssertResult(op.determineBinaryType(context, left->type(), right->type(), in Make()
H A DSkSLTernaryExpression.cpp42 if (!equalityOp.determineBinaryType(context, ifTrue->type(), ifFalse->type(), in Convert()