/libcore/ojluni/src/main/java/java/lang/ |
D | Math.java | 1900 public static double nextAfter(double start, double direction) { in nextAfter() argument 1913 if (Double.isNaN(start) || Double.isNaN(direction)) { in nextAfter() 1915 return start + direction; in nextAfter() 1916 } else if (start == direction) { in nextAfter() 1917 return direction; in nextAfter() 1935 if (direction > start) { // Calculate next greater value in nextAfter() 1938 assert direction < start; in nextAfter() 1999 public static float nextAfter(float start, double direction) { in nextAfter() argument 2012 if (Float.isNaN(start) || Double.isNaN(direction)) { in nextAfter() 2014 return start + (float)direction; in nextAfter() [all …]
|
D | StrictMath.java | 1481 public static double nextAfter(double start, double direction) { in nextAfter() argument 1482 return Math.nextAfter(start, direction); in nextAfter() 1523 public static float nextAfter(float start, double direction) { in nextAfter() argument 1524 return Math.nextAfter(start, direction); in nextAfter()
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | FpUtils.java | 617 public static double nextAfter(double start, double direction) { in nextAfter() argument 618 return Math.nextAfter(start, direction); in nextAfter() 663 public static float nextAfter(float start, double direction) { in nextAfter() argument 664 return Math.nextAfter(start, direction); in nextAfter()
|
/libcore/luni/src/main/java/libcore/icu/ |
D | RelativeDateTimeFormatter.java | 131 android.icu.text.RelativeDateTimeFormatter.Direction direction; in getRelativeTimeSpanString() local 133 direction = android.icu.text.RelativeDateTimeFormatter.Direction.LAST; in getRelativeTimeSpanString() 135 direction = android.icu.text.RelativeDateTimeFormatter.Direction.NEXT; in getRelativeTimeSpanString() 196 direction = android.icu.text.RelativeDateTimeFormatter.Direction.THIS; in getRelativeTimeSpanString() 228 return formatter.format(count, direction, unit); in getRelativeTimeSpanString() 230 return formatter.format(direction, aunit); in getRelativeTimeSpanString()
|
/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
D | FpUtils.java | 109 public static double nextAfter(double start, double direction) { in nextAfter() argument 114 public static float nextAfter(float start, double direction) { in nextAfter() argument
|
/libcore/ojluni/annotations/mmodule/java/lang/ |
D | Math.annotated.java | 170 public static double nextAfter(double start, double direction) { throw new RuntimeException("Stub!"… in nextAfter() argument 172 public static float nextAfter(float start, double direction) { throw new RuntimeException("Stub!");… in nextAfter() argument
|
/libcore/ojluni/src/main/java/java/sql/ |
D | Statement.java | 419 void setFetchDirection(int direction) throws SQLException; in setFetchDirection() argument
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | StrictMathTest.java | 702 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; in test_nextAfter_DD() local 704 .nextAfter(start, direction)); in test_nextAfter_DD() 705 final long directionBits = Double.doubleToLongBits(direction); in test_nextAfter_DD() 706 if (direction > start) { in test_nextAfter_DD() 709 } else if (direction < start) { in test_nextAfter_DD() 767 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; in test_nextAfter_FD() local 769 .nextAfter(start, direction)); in test_nextAfter_FD() 770 if (direction > start) { in test_nextAfter_FD() 773 } else if (direction < start) { in test_nextAfter_FD() 778 direction)); in test_nextAfter_FD()
|
D | MathTest.java | 856 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; in test_nextAfter_DD() local 858 start, direction)); in test_nextAfter_DD() 859 final long directionBits = Double.doubleToLongBits(direction); in test_nextAfter_DD() 860 if (direction > start) { in test_nextAfter_DD() 863 } else if (direction < start) { in test_nextAfter_DD() 945 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; in test_nextAfter_FD() local 947 start, direction)); in test_nextAfter_FD() 948 if (direction > start) { in test_nextAfter_FD() 951 } else if (direction < start) { in test_nextAfter_FD() 956 direction)); in test_nextAfter_FD()
|
/libcore/benchmarks/libs/ |
D | caliper.jar.txt | 20 direction or management of such entity, whether by contract or
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | R.java | 1531 public static final int direction = 0; field in R
|