Searched refs:less (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/test/java/libcore/libcore/util/ |
D | FP16Test.java | 268 assertTrue(FP16.less(NEGATIVE_INFINITY, POSITIVE_INFINITY)); in testLess() 269 assertTrue(FP16.less(MAX_VALUE, POSITIVE_INFINITY)); in testLess() 270 assertFalse(FP16.less(POSITIVE_INFINITY, MAX_VALUE)); in testLess() 271 assertFalse(FP16.less(LOWEST_VALUE, NEGATIVE_INFINITY)); in testLess() 272 assertTrue(FP16.less(NEGATIVE_INFINITY, LOWEST_VALUE)); in testLess() 273 assertFalse(FP16.less(POSITIVE_ZERO, NEGATIVE_ZERO)); in testLess() 274 assertFalse(FP16.less(NEGATIVE_ZERO, POSITIVE_ZERO)); in testLess() 275 assertFalse(FP16.less(NaN, toHalf(12.3f))); in testLess() 276 assertFalse(FP16.less(toHalf(12.3f), NaN)); in testLess() 277 assertTrue(FP16.less(MIN_VALUE, MIN_NORMAL)); in testLess() [all …]
|
/libcore/ojluni/src/main/java/java/text/ |
D | ChoiceFormat.java | 274 double less = previousDouble(choiceLimits[i]); in toPattern() local 276 double tryLess = Math.abs(Math.IEEEremainder(less, 1.0d)); in toPattern() 287 result.append(less); in toPattern()
|
/libcore/luni/src/main/java/libcore/util/ |
D | FP16.java | 282 if (less(x, y)) return -1; in compare() 526 public static boolean less(short x, short y) { in less() method in FP16
|
/libcore/tools/testmapping/ |
D | README | 2 tests to run on every change, chosen to run as many as possible in less than
|
/libcore/ojluni/src/main/java/java/nio/ |
D | X-Buffer.java.template | 871 * read; must be non-negative and less than {@code limit()} 878 * written; must be non-negative and less than 917 * read; must be non-negative and less than {@code limit()} 1070 * written; must be non-negative and less than {@code limit()} 1077 * read; must be non-negative and less than {@code src.limit()} 1352 * written; must be non-negative and less than {@code limit()} 1359 * must be non-negative and less than {@code src.length} 1401 * written; must be non-negative and less than {@code limit()} 1906 * is less than, equal to, or greater than the given buffer 2304 throw new IllegalArgumentException("Index less than zero: " + index);
|
/libcore/ojluni/src/test/java/nio/Buffer/ |
D | Basic-X.java.template | 690 // The index must be non-negative and less than the buffer's limit. 1097 // The index must be non-negative and less than the buffer's limit.
|
/libcore/api/ |
D | module-lib-current.txt | 720 method public static boolean less(short, short);
|