Home | History | Annotate | Download | only in lang

Lines Matching defs:copySign

179      * {@link java.lang.StrictMath#copySign(double, double)}
194 .copySign(magnitude, Double.NaN)));
196 .copySign(Double.NaN, magnitude)));
201 .copySign(magnitude, sign));
218 .copySign(Double.NaN, Double.NaN)));
221 StrictMath.copySign((Double) null, 2.3);
227 StrictMath.copySign(2.3, (Double) null);
233 StrictMath.copySign((Double) null, (Double) null);
240 assertEquals(1.0, StrictMath.copySign(1.0, d), 0d);
244 * {@link java.lang.StrictMath#copySign(float, float)}
258 absMagnitudeBits, Float.floatToIntBits(StrictMath.copySign(
261 .copySign(Float.NaN, magnitude)));
266 .copySign(magnitude, sign));
282 .copySign(Float.NaN, Float.NaN)));
285 StrictMath.copySign((Float) null, 2.3f);
291 StrictMath.copySign(2.3f, (Float) null);
297 StrictMath.copySign((Float) null, (Float) null);
304 assertEquals(1.0f, StrictMath.copySign(1.0f, f), 0f);