HomeSort by relevance Sort by last modified time
    Searched refs:MAX_VALUE (Results 501 - 525 of 1164) sorted by null

<<21222324252627282930>>

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
MessageDigest1Test.java 77 // offset + len > Integer.MAX_VALUE
78 md.update(bytes, Integer.MAX_VALUE, 1);
167 // offset + len > Integer.MAX_VALUE
168 md.digest(bytes, Integer.MAX_VALUE, 1);
MessageDigest2Test.java 264 MessageDigest.getInstance("SHA").digest(new byte[] {}, Integer.MAX_VALUE, 755);
277 Integer.MAX_VALUE, Integer.MAX_VALUE);
  /packages/apps/Launcher3/src/com/android/launcher3/
PageIndicator.java 175 addMarker(Integer.MAX_VALUE, markers.get(i), allowAnimations);
193 removeMarker(Integer.MAX_VALUE, allowAnimations);
  /cts/tests/tests/util/src/android/util/cts/
RationalTest.java 273 assertValueEquals(POSITIVE_INFINITY, Long.MAX_VALUE);
274 assertValueEquals(POSITIVE_INFINITY, Integer.MAX_VALUE);
307 assertValueEquals(new Rational(Integer.MAX_VALUE, 1), (short)Integer.MAX_VALUE);
325 assertEqualsAfterSerializing(new Rational(Integer.MAX_VALUE, Integer.MIN_VALUE));
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoEncoder.java 227 int nextAddrL = Integer.MAX_VALUE; // local variable
228 int nextAddrP = Integer.MAX_VALUE; // position (line number)
241 if (next == Integer.MAX_VALUE) {
250 && nextAddrL == Integer.MAX_VALUE
251 && nextAddrP == Integer.MAX_VALUE) {
895 * represent integers larger than Integer.MAX_VALUE, we currently don't
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoEncoder.java 235 int nextAddrL = Integer.MAX_VALUE; // local variable
236 int nextAddrP = Integer.MAX_VALUE; // position (line number)
249 if (next == Integer.MAX_VALUE) {
258 && nextAddrL == Integer.MAX_VALUE
259 && nextAddrP == Integer.MAX_VALUE) {
903 * represent integers larger than Integer.MAX_VALUE, we currently don't
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoEncoder.java 227 int nextAddrL = Integer.MAX_VALUE; // local variable
228 int nextAddrP = Integer.MAX_VALUE; // position (line number)
241 if (next == Integer.MAX_VALUE) {
250 && nextAddrL == Integer.MAX_VALUE
251 && nextAddrP == Integer.MAX_VALUE) {
895 * represent integers larger than Integer.MAX_VALUE, we currently don't
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
RationalTest.java 292 assertValueEquals(POSITIVE_INFINITY, Long.MAX_VALUE);
293 assertValueEquals(POSITIVE_INFINITY, Integer.MAX_VALUE);
326 assertValueEquals(new Rational(Integer.MAX_VALUE, 1), (short)Integer.MAX_VALUE);
344 assertEqualsAfterSerializing(new Rational(Integer.MAX_VALUE, Integer.MIN_VALUE));
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 92 mStartMillis = Long.MAX_VALUE;
107 if (mStartMillis == Long.MAX_VALUE) {
108 return Long.MAX_VALUE;
131 return mStartMillis == Long.MAX_VALUE && mEndMillis == Long.MIN_VALUE;
140 return getHistory(template, uid, set, tag, fields, Long.MIN_VALUE, Long.MAX_VALUE);
  /libcore/luni/src/test/java/libcore/xml/
NormalizeTest.java 452 for (int c = 0; c <= Character.MAX_VALUE; c++) {
473 for (int c = 0; c <= Character.MAX_VALUE; c++) {
492 for (int c = 0; c <= Character.MAX_VALUE; c++) {
513 for (int c = 0; c <= Character.MAX_VALUE; c++) {
534 for (int c = 0; c <= Character.MAX_VALUE; c++) {
  /external/guava/guava-tests/test/com/google/common/primitives/
CharsTest.java 47 private static final char GREATEST = Character.MAX_VALUE;
64 assertCastFails(Long.MAX_VALUE);
74 assertEquals(GREATEST, Chars.saturatedCast(Long.MAX_VALUE));
IntsTest.java 48 private static final int GREATEST = Integer.MAX_VALUE;
65 assertCastFails(Long.MAX_VALUE);
75 assertEquals(GREATEST, Ints.saturatedCast(Long.MAX_VALUE));
ShortsTest.java 48 private static final short GREATEST = Short.MAX_VALUE;
65 assertCastFails(Long.MAX_VALUE);
75 assertEquals(GREATEST, Shorts.saturatedCast(Long.MAX_VALUE));
  /frameworks/base/media/java/android/media/
MediaCodecInfo.java 121 Range.create(1, Integer.MAX_VALUE);
123 Range.create(1l, Long.MAX_VALUE);
125 Range.create(new Rational(1, Integer.MAX_VALUE),
126 new Rational(Integer.MAX_VALUE, 1));
555 mBitrateRange = Range.create(0, Integer.MAX_VALUE);
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 384 int minNumSeptets = Integer.MAX_VALUE;
385 int minNumSeptetsWithHeader = Integer.MAX_VALUE;
386 int minNumMissingChars = Integer.MAX_VALUE;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ShortTest.java 32 assertEquals("Returned incorrect byte value", -1, new Short(Short.MAX_VALUE)
99 assertTrue("Failed to throw exception for MAX_VALUE + 1", exception);
117 assertTrue("Failed to throw exception for hex MAX_VALUE + 1", exception);
152 assertTrue("Failed to throw exception for MAX_VALUE + 1", exception);
227 assertTrue("Failed to throw exception for MAX_VALUE + 1", exception);
245 assertTrue("Failed to throw exception for hex MAX_VALUE + 1", exception);
349 assertEquals(new Short(Short.MAX_VALUE), Short.valueOf(Short.MAX_VALUE));
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 133 // FileChannel uses Long.MAX_VALUE to mean "lock the whole file" where POSIX uses 0.
134 return (byteCount == Long.MAX_VALUE) ? 0 : byteCount;
225 if (position < 0 || size < 0 || size > Integer.MAX_VALUE) {
369 if (position < 0 || count < 0 || count > Integer.MAX_VALUE) {
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingQueue.java 36 * is equal to {@link Integer#MAX_VALUE}. Linked nodes are
104 /** The capacity bound, or Integer.MAX_VALUE if none */
215 * {@link Integer#MAX_VALUE}.
218 this(Integer.MAX_VALUE);
236 * {@link Integer#MAX_VALUE}, initially containing the elements of the
245 this(Integer.MAX_VALUE);
265 // greater in size than Integer.MAX_VALUE
684 return drainTo(c, Integer.MAX_VALUE);
  /libcore/luni/src/test/java/libcore/java/text/
SimpleDateFormatTest.java 174 format.format(new Date(Integer.MAX_VALUE * 1000L)));
176 format.format(new Date((2L + Integer.MAX_VALUE + Integer.MAX_VALUE) * 1000L)));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
SettingsValues.java 46 // Float.NEGATIVE_INFINITE and Float.MAX_VALUE. Currently used for auto-correction settings.
315 autoCorrectionThreshold = Float.MAX_VALUE;
322 autoCorrectionThreshold = Float.MAX_VALUE;
330 return Float.MAX_VALUE;
  /cts/tests/tests/graphics/src/android/graphics/cts/
MovieTest.java 136 assertFalse(mMovie.setTime(Integer.MAX_VALUE));
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
Sphere.java 56 if (nVertices > Short.MAX_VALUE) {
  /cts/tests/tests/widget/src/android/widget/cts/
ChronometerTest.java 71 expected = Integer.MAX_VALUE;
RelativeLayout_LayoutParamsTest.java 343 layoutParams.addRule(Integer.MAX_VALUE);
388 layoutParams.addRule(Integer.MAX_VALUE, 0);
394 layoutParams.addRule(RelativeLayout.ALIGN_LEFT, Integer.MAX_VALUE);
396 assertEquals(Integer.MAX_VALUE, rules[RelativeLayout.ALIGN_LEFT]);
SpinnerTest.java 150 spinner.setPromptId(Integer.MAX_VALUE);

Completed in 3688 milliseconds

<<21222324252627282930>>