| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
| SimpleTimeZoneTest.java | 194 Integer.MAX_VALUE, 204 1, Calendar.SUNDAY, 0, Integer.MAX_VALUE, Calendar.NOVEMBER, -1, Calendar.SUNDAY, 205 0, Integer.MAX_VALUE, 1000 * 60 * 60); 213 10, Calendar.SUNDAY, 0, Integer.MAX_VALUE, Calendar.NOVEMBER, -1, Calendar.SUNDAY, 214 0, Integer.MAX_VALUE, 1000 * 60 * 60); 222 1, 10, 0, Calendar.NOVEMBER, Integer.MAX_VALUE, -1, Calendar.SUNDAY, 223 0, Integer.MAX_VALUE, 1000 * 60 * 60); 231 1, Calendar.SUNDAY, 0, Calendar.NOVEMBER, Integer.MAX_VALUE, -10, Calendar.SUNDAY, 232 0, Integer.MAX_VALUE, 1000 * 60 * 60); [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ |
| ServerSocketFactoryTest.java | 101 sf.createServerSocket(Integer.MAX_VALUE, 0, InetAddress.getLocalHost());
|
| /libcore/jsr166-tests/src/test/java/jsr166/ |
| DelayQueueTest.java | 147 assertEquals(Integer.MAX_VALUE, q.remainingCapacity()); 156 assertEquals(Integer.MAX_VALUE, new DelayQueue().remainingCapacity()); 210 assertEquals(Integer.MAX_VALUE, q.remainingCapacity()); 220 * remainingCapacity() always returns Integer.MAX_VALUE 225 assertEquals(Integer.MAX_VALUE, q.remainingCapacity()); 230 assertEquals(Integer.MAX_VALUE, q.remainingCapacity()); 527 assertEquals(Integer.MAX_VALUE, q.remainingCapacity()); 718 q.add(new NanoDelay(Long.MAX_VALUE)); 727 q.add(new NanoDelay(Long.MAX_VALUE));
|
| /libcore/luni/src/test/java/libcore/java/lang/ |
| CharacterTest.java | 32 for (int c = '\u0080'; c <= Character.MAX_VALUE; ++c) { 43 assertFalse(Character.isBmpCodePoint(Integer.MAX_VALUE)); 101 Character.getName(Integer.MAX_VALUE); 284 for (int c = '\u0000'; c <= Character.MAX_VALUE; ++c) {
|
| /libcore/luni/src/test/java/libcore/java/math/ |
| OldBigDecimalConvertTest.java | 175 double dNumber = Double.MAX_VALUE; 237 int iNumber = Integer.MAX_VALUE; 287 double dNumber = Double.MAX_VALUE; 334 int iNumber = Integer.MAX_VALUE;
|
| OldBigIntegerConstructorsTest.java | 57 bi_s.intValue() == Integer.MAX_VALUE);
|
| /libcore/luni/src/test/java/libcore/java/nio/charset/ |
| ModifiedUtf8Test.java | 216 char[] unsignedShortSizedCharArray = new char[2 * Short.MAX_VALUE + 1]; 222 char[] sizeLongerThanUnsignedShortCharArray = new char[2 * Short.MAX_VALUE + 2]; 275 char[] unsignedShortSizedCharArray = new char[Short.MAX_VALUE * 2 + 1]; 281 char[] sizeLongerThanUnsignedShortCharArray = new char[Short.MAX_VALUE * 2 + 2];
|
| /libcore/luni/src/test/java/libcore/java/util/ |
| IntSummaryStatisticsTest.java | 31 assertEquals(Integer.MAX_VALUE, iss.getMin());
|
| LongSummaryStatisticsTest.java | 31 assertEquals(Long.MAX_VALUE, lss.getMin());
|
| /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
| DHParameterSpecTest.java | 48 int[] ls = {Integer.MIN_VALUE, 0, 1, Integer.MAX_VALUE};
|
| /libcore/ojluni/src/main/java/java/io/ |
| ByteArrayOutputStream.java | 88 * {@code (long) Integer.MAX_VALUE + (minCapacity - Integer.MAX_VALUE)}. 102 private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8; 125 Integer.MAX_VALUE :
|
| /libcore/ojluni/src/main/java/javax/crypto/ |
| CryptoPermission.java | 77 return Integer.MAX_VALUE;
|
| /packages/apps/Car/Settings/src/com/android/car/settings/datetime/ |
| DatePickerFragment.java | 63 if (when / MILLIS_IN_SECOND < Integer.MAX_VALUE) {
|
| TimePickerFragment.java | 65 if (when / MILLIS_IN_SECOND < Integer.MAX_VALUE) {
|
| /packages/apps/Dialer/java/com/android/dialer/searchfragment/nearbyplaces/ |
| NearbyPlacesCursorLoader.java | 34 private static final long INVALID_DIRECTORY_ID = Long.MAX_VALUE;
|
| /packages/services/Telephony/src/com/android/phone/ |
| NetworkQueryService.java | 384 Integer.MAX_VALUE /* lac */, 385 Integer.MAX_VALUE /* cid */, 386 Integer.MAX_VALUE /* arfcn */, 387 Integer.MAX_VALUE /* bsic */,
|
| /prebuilts/jdk/jdk8/darwin-x86/sample/annotations/DependencyChecker/PluginChecker/src/checker/ |
| Require.java | 71 int maxVersion() default Integer.MAX_VALUE;
|
| /prebuilts/jdk/jdk8/linux-x86/sample/annotations/DependencyChecker/PluginChecker/src/checker/ |
| Require.java | 71 int maxVersion() default Integer.MAX_VALUE;
|
| /libcore/luni/src/test/java/libcore/java/net/ |
| URLConnectionTest.java | 347 assertEquals("A", readAscii(connection.getErrorStream(), Integer.MAX_VALUE)); 413 assertEquals("ABC", readAscii(connection1.getInputStream(), Integer.MAX_VALUE)); 416 assertEquals("DEF", readAscii(connection2.getInputStream(), Integer.MAX_VALUE)); 598 readAscii(connection.getInputStream(), Integer.MAX_VALUE); [all...] |
| /art/test/409-materialized-condition/src/ |
| Main.java | 112 int[] int_inputs = {0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE, 42, -9000}; 114 0L, 1L, -1L, Long.MIN_VALUE, Long.MAX_VALUE, 0x100000000L,
|
| /art/test/631-checker-fp-abs/src/ |
| Main.java | 88 spnans[i] & Integer.MAX_VALUE, 128 dpnans[i] & Long.MAX_VALUE,
|
| /art/test/701-easy-div-rem/ |
| genMain.py | 142 intCheckAll(Integer.MAX_VALUE - i); 160 longCheckAll(Long.MAX_VALUE - l);
|
| /art/test/952-invoke-custom/src/ |
| TestInvocationKinds.java | 128 static_field = Integer.MAX_VALUE; 129 assertEquals(Integer.MAX_VALUE, getStaticField());
|
| /art/test/958-methodhandle-stackframe/src-art/ |
| Main.java | 96 // delegate.invokeExact(false, 'h', (short) 56, 72, Integer.MAX_VALUE + 42l, 100 delegate.invokeExact(false, 'h', (short) 56, 72, Integer.MAX_VALUE + 42l,
|
| /bionic/libc/malloc_debug/ |
| Config.h | 100 size_t min_value, size_t max_value, size_t* new_value) const; 103 size_t max_value, size_t* parsed_value) const;
|