HomeSort by relevance Sort by last modified time
    Searched defs:nextAfter (Results 1 - 23 of 23) sorted by null

  /external/crcalc/tests/src/com/hp/creals/
ConversionTest.java 51 checkDoubleConversion(Math.nextAfter(x, Double.NEGATIVE_INFINITY));
52 checkDoubleConversion(Math.nextAfter(x, Double.POSITIVE_INFINITY));
55 checkFloatConversion(Math.nextAfter(f, Double.NEGATIVE_INFINITY));
56 checkFloatConversion(Math.nextAfter(f, Double.POSITIVE_INFINITY));
  /libcore/ojluni/src/main/java/sun/misc/
FpUtils.java 614 * @deprecated Use Math.nextAfter
617 public static double nextAfter(double start, double direction) {
618 return Math.nextAfter(start, direction);
660 * @deprecated Use Math.nextAfter.
663 public static float nextAfter(float start, double direction) {
664 return Math.nextAfter(start, direction);
670 * semantically equivalent to {@code nextAfter(d,
673 * {@code nextAfter} call.
701 * semantically equivalent to {@code nextAfter(f,
704 * {@code nextAfter} call
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpDec.java 293 public Dfp nextAfter(Dfp x) {
295 final String trapName = "nextAfter";
Dfp.java 151 /** Name for traps triggered by nextAfter. */
152 private static final String NEXT_AFTER_TRAP = "nextAfter";
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
StrictMath.java     [all...]
Math.java     [all...]
  /libcore/benchmarks/src/benchmarks/regression/
StrictMathBenchmark.java 257 StrictMath.nextAfter(d, d);
263 StrictMath.nextAfter(f, f);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
StrictMathTest.java 688 * {@link java.lang.StrictMath#nextAfter(double, double)}
704 .nextAfter(start, direction));
722 .nextAfter(NEXTAFTER_DD_START_CASES[i][0], Double.NaN)));
726 .nextAfter(Double.NaN, NEXTAFTER_DD_FD_DIRECTION_CASES[i])));
729 .nextAfter(Double.NaN, Double.NaN)));
733 StrictMath.nextAfter((Double) null, 2.3);
739 StrictMath.nextAfter(2.3, (Double) null);
745 StrictMath.nextAfter((Double) null, (Double) null);
753 * {@link java.lang.StrictMath#nextAfter(float, double)}
769 .nextAfter(start, direction))
    [all...]
MathTest.java     [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
Difference.java 356 CsmElement nextAfter = after.elements.get(afterIndex);
358 if ((nextOriginal instanceof CsmMix) && (nextAfter instanceof CsmMix)) {
359 if (((CsmMix) nextAfter).getElements().equals(((CsmMix) nextOriginal).getElements())) {
361 ((CsmMix) nextAfter).getElements().forEach(el -> elements.add(new Kept(el)));
363 elements.add(new Reshuffled((CsmMix)nextOriginal, (CsmMix)nextAfter));
367 } else if (matching(nextOriginal, nextAfter)) {
371 } else if (replacement(nextOriginal, nextAfter)) {
373 elements.add(new Added(nextAfter));
385 elements.add(new Added(nextAfter));
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 32 * <li>{@link #nextAfter(double,double)}</li>
37 * <li>{@link #nextAfter(float,double)}</li>
657 return nextAfter(a, Double.POSITIVE_INFINITY);
665 return nextAfter(a, Float.POSITIVE_INFINITY);
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
core.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 484 milliseconds