/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
BasicBitmapDrawable.java | 385 bounds.height(), Integer.MAX_VALUE, getDecodeHorizontalCenter(),
|
/hardware/google/av/codec2/vndk/include/util/ |
C2InterfaceUtils.h | 63 constexpr static T MAX_VALUE = std::numeric_limits<T>::max(); 74 return C2SupportedRange(MAX_VALUE, MIN_VALUE); 81 return C2SupportedRange(MIN_VALUE, MAX_VALUE); 99 return (value == MAX_VALUE ? None() : 101 C2SupportedRange(std::nextafter(value, MAX_VALUE), MAX_VALUE) : 102 C2SupportedRange(value + MIN_STEP, MAX_VALUE)); 111 return C2SupportedRange(value, MAX_VALUE); [all...] |
/libcore/ojluni/src/main/java/java/lang/ |
Long.java | 66 @Native public static final long MAX_VALUE = 0x7fffffffffffffffL; 446 while (i > Integer.MAX_VALUE) { 572 long limit = -Long.MAX_VALUE; 591 // Accumulating negatively avoids surprises near MAX_VALUE 643 * positive numbers larger than {@code MAX_VALUE}. 696 if (len <= 12 || // Long.MAX_VALUE in Character.MAX_RADIX is 13 digits 697 (radix == 10 && len <= 18) ) { // Long.MAX_VALUE in base 10 is 19 digits [all...] |
Character.java | 168 public static final char MAX_VALUE = '\uFFFF'; [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
MessagePattern.java | 730 private static final int MAX_VALUE=Short.MAX_VALUE; 863 if(nestingLevel>Part.MAX_VALUE) { [all...] |
RuleBasedNumberFormat.java | [all...] |
UnicodeSet.java | 75 * <code>MIN_VALUE-MAX_VALUE</code> 315 public static final int MAX_VALUE = HIGH - 1; 762 // MIN_VALUE and MAX_VALUE, then the inverse representation will 766 getRangeEnd(count-1) == MAX_VALUE) { [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
MessagePattern.java | 789 private static final int MAX_VALUE=Short.MAX_VALUE; 934 if(nestingLevel>Part.MAX_VALUE) { [all...] |
RuleBasedNumberFormat.java | [all...] |
UnicodeSet.java | 74 * <code>MIN_VALUE-MAX_VALUE</code> 319 public static final int MAX_VALUE = HIGH - 1; 784 // MIN_VALUE and MAX_VALUE, then the inverse representation wil [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
HttpOverSpdyTest.java | 89 cache = new Cache(tempDir.getRoot(), Integer.MAX_VALUE); 101 assertContent("ABCDE", connection, Integer.MAX_VALUE); 127 assertContent("ABCDE", connection, Integer.MAX_VALUE); 142 assertContent("ABCDE", connection, Integer.MAX_VALUE); 159 assertContent("ABCDE", connection, Integer.MAX_VALUE); 174 assertContent("ABCDE", connection, Integer.MAX_VALUE); 212 assertContent("ABCABCABC", client.open(server.getUrl("/r1")), Integer.MAX_VALUE); 223 assertEquals("Successful auth!", readAscii(connection.getInputStream(), Integer.MAX_VALUE)); 240 assertContent("This is the new location!", connection, Integer.MAX_VALUE); 265 assertContent("A", connection, Integer.MAX_VALUE); [all...] |
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
RopeByteString.java | 109 numbers.add(Integer.MAX_VALUE); 790 } else if (length > Integer.MAX_VALUE) { 791 length = Integer.MAX_VALUE;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
SSLSocketTest.java | 63 int[] invalidPort = {-1, Integer.MIN_VALUE, 65536, Integer.MAX_VALUE}; 126 InetAddress.getLocalHost(), Integer.MAX_VALUE); 138 int[] invalidPort = {-1, Integer.MIN_VALUE, 65536, Integer.MAX_VALUE}; 172 int[] invalidPort = {-1, Integer.MIN_VALUE, 65536, Integer.MAX_VALUE};
|
/dalvik/dx/src/com/android/dx/io/ |
Opcodes.java | 42 public static final int MAX_VALUE = 0xffff;
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
URLConnectionTest.java | 330 assertEquals("A", readAscii(connection.getErrorStream(), Integer.MAX_VALUE)); 591 readAscii(connection2.getInputStream(), Integer.MAX_VALUE); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
ScreenDecorations.java | 567 bounds.op(0, 0, Integer.MAX_VALUE, displayCutout.getSafeInsetTop(), 572 bounds.op(0, 0, displayCutout.getSafeInsetLeft(), Integer.MAX_VALUE, 577 bounds.op(0, displayCutout.getSafeInsetTop() + 1, Integer.MAX_VALUE, 578 Integer.MAX_VALUE, Region.Op.INTERSECT); 582 bounds.op(displayCutout.getSafeInsetLeft() + 1, 0, Integer.MAX_VALUE, 583 Integer.MAX_VALUE, Region.Op.INTERSECT);
|
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/ |
SoundTriggerService.java | [all...] |
/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...] |
/libcore/luni/src/test/java/libcore/java/security/cert/ |
X509CertificateTest.java | 820 assertEquals(f.getProvider().getName(), Integer.MAX_VALUE, c.getBasicConstraints()); [all...] |
/libcore/ojluni/src/test/java/time/tck/java/time/ |
TCKPeriod.java | 100 assertPeriod(Period.ofYears(Integer.MAX_VALUE), Integer.MAX_VALUE, 0, 0); 113 assertPeriod(Period.ofMonths(Integer.MAX_VALUE), 0, Integer.MAX_VALUE, 0); 126 assertPeriod(Period.ofWeeks(Integer.MAX_VALUE / 7), 0, 0, (Integer.MAX_VALUE / 7) * 7); 139 assertPeriod(Period.ofDays(Integer.MAX_VALUE), 0, 0, Integer.MAX_VALUE); 199 return ((long) (Integer.MAX_VALUE)) + 1; 279 {"P" + Integer.MAX_VALUE + "Y", Period.ofYears(Integer.MAX_VALUE)} [all...] |
TCKDuration.java | 161 Duration.ofSeconds(Long.MAX_VALUE, 1000000000); 217 Duration test = Duration.ofNanos(Long.MAX_VALUE); 218 assertEquals(test.getSeconds(), Long.MAX_VALUE / 1000000000); 219 assertEquals(test.getNano(), Long.MAX_VALUE % 1000000000); 241 Duration test = Duration.ofMinutes(Long.MAX_VALUE / 60); 242 assertEquals(test.getSeconds(), (Long.MAX_VALUE / 60) * 60); 255 Duration.ofMinutes(Long.MAX_VALUE / 60 + 1); 275 Duration test = Duration.ofHours(Long.MAX_VALUE / 3600); 276 assertEquals(test.getSeconds(), (Long.MAX_VALUE / 3600) * 3600); 289 Duration.ofHours(Long.MAX_VALUE / 3600 + 1) [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarController.java | 143 final int MAX_VALUE = 5; [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
DalvOps.java | 31 public static final int MAX_VALUE = 0xff;
|
/frameworks/support/compat/src/main/java/androidx/core/widget/ |
NestedScrollView.java | [all...] |
/prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-runtime/1.0.5/ |
kotlin-runtime-1.0.5.jar | |