Lines Matching refs:ifFalse
22 std::unique_ptr<Expression> ifFalse) {
24 if (!test || !ifTrue || !ifFalse) {
32 if (!equalityOp.determineBinaryType(context, ifTrue->type(), ifFalse->type(),
37 ifFalse->type().displayName() + "'");
54 ifFalse = falseType->coerceExpression(std::move(ifFalse), context);
55 if (!ifFalse) {
58 return TernaryExpression::Make(context, std::move(test), std::move(ifTrue), std::move(ifFalse));
64 std::unique_ptr<Expression> ifFalse) {
65 SkASSERT(ifTrue->type() == ifFalse->type());
73 : std::move(ifFalse);
77 std::move(ifFalse));