Lines Matching refs:ry
124 Expr<SomeReal> &&ry) -> ConvertRealOperandsResult { in ConvertRealOperands() argument
126 ConvertTo(ry, std::move(ix)), std::move(ry))}; in ConvertRealOperands()
134 Expr<SomeReal> &&ry) -> ConvertRealOperandsResult { in ConvertRealOperands() argument
136 std::move(rx), std::move(ry))}; in ConvertRealOperands()
160 Expr<SomeReal> &&ry) -> ConvertRealOperandsResult { in ConvertRealOperands() argument
162 ConvertTo(ry, std::move(bx)), std::move(ry))}; in ConvertRealOperands()
377 [](Expr<SomeReal> &&rx, Expr<SomeReal> &&ry) { in NumericOperation() argument
379 std::move(rx), std::move(ry))); in NumericOperation()
385 [](Expr<SomeInteger> &&ix, Expr<SomeReal> &&ry) { in NumericOperation() argument
393 std::move(ry.u))); in NumericOperation()
404 [&](Expr<SomeComplex> &&zx, Expr<SomeReal> &&ry) { in NumericOperation() argument
406 messages, std::move(zx), std::move(ry), defaultRealKind); in NumericOperation()
422 [&](BOZLiteralConstant &&bx, Expr<SomeReal> &&ry) { in NumericOperation() argument
424 AsGenericExpr(ConvertTo(ry, std::move(bx))), std::move(y), in NumericOperation()
528 Expr<SomeReal> &&ry) -> std::optional<Expr<LogicalResult>> { in Relate() argument
529 return PromoteAndRelate(opr, std::move(rx), std::move(ry)); in Relate()
535 [&](Expr<SomeInteger> &&ix, Expr<SomeReal> &&ry) { in Relate() argument
537 AsGenericExpr(ConvertTo(ry, std::move(ix))), std::move(y)); in Relate()
554 [&](Expr<SomeComplex> &&zx, Expr<SomeReal> &&ry) { in Relate() argument
556 AsGenericExpr(ConvertTo(zx, std::move(ry)))); in Relate()