Searched defs:MAX_VALUE (Results 1 - 25 of 32) sorted by relevance

12

/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedBytes.java60 public static final byte MAX_VALUE = (byte) 0xFF; field in class:UnsignedBytes
102 if (value > toInt(MAX_VALUE)) {
103 return MAX_VALUE; // -1
H A DUnsignedInteger.java48 public static final UnsignedInteger MAX_VALUE = fromIntBits(-1); field in class:UnsignedInteger
H A DUnsignedLong.java49 public static final UnsignedLong MAX_VALUE = new UnsignedLong(-1L); field in class:UnsignedLong
H A DUnsignedLongs.java55 public static final long MAX_VALUE = -1L; // Equivalent to 2^64 - 1 field in class:UnsignedLongs
390 maxValueDivs[i] = divide(MAX_VALUE, i);
391 maxValueMods[i] = (int) remainder(MAX_VALUE, i);
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DUnsignedInteger.java47 public static final UnsignedInteger MAX_VALUE = fromIntBits(-1); field in class:UnsignedInteger
/external/icu/icu4c/source/common/unicode/
H A Duniset.h64 * <code>MIN_VALUE-MAX_VALUE</code>
349 MAX_VALUE = 0x10ffff enumerator in enum:U_FINAL::__anon8000
1023 * @param c a character in the range MIN_VALUE..MAX_VALUE
1232 * <code>complement(MIN_VALUE, MAX_VALUE)</code>.
H A Dmessagepattern.h821 static const int32_t MAX_VALUE=0x7fff; member in class:MessagePattern::Part
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRuleBasedNumberFormat.java1231 private static final android.icu.math.BigDecimal MAX_VALUE = android.icu.math.BigDecimal.valueOf(Long.MAX_VALUE); field in class:RuleBasedNumberFormat
1243 if (MIN_VALUE.compareTo(number) > 0 || MAX_VALUE.compareTo(number) < 0) {
1297 tempResult = ruleSets[i].parse(workingText, workingPos, Double.MAX_VALUE);
H A DMessagePattern.java730 private static final int MAX_VALUE=Short.MAX_VALUE; field in class:MessagePattern.Part
863 if(nestingLevel>Part.MAX_VALUE) {
962 if(length>Part.MAX_LENGTH || number>Part.MAX_VALUE) {
1272 if(number>=Integer.MAX_VALUE/10) {
1332 if(value>(Part.MAX_VALUE+isNegative)) {
1485 if(numericIndex>Part.MAX_VALUE) {
H A DUnicodeSet.java75 * <code>MIN_VALUE-MAX_VALUE</code>
315 public static final int MAX_VALUE = HIGH - 1; field in class:UnicodeSet
762 // MIN_VALUE and MAX_VALUE, then the inverse representation will
766 getRangeEnd(count-1) == MAX_VALUE) {
1092 if (c < MIN_VALUE || c > MAX_VALUE) {
1165 if (start < MIN_VALUE || start > MAX_VALUE) {
1168 if (end < MIN_VALUE || end > MAX_VALUE) {
1210 if (c < MIN_VALUE || c > MAX_VALUE) {
1233 // TODO: Is the "list[i]-1" a typo? Even if you pass MAX_VALUE into
1235 // is "MAX_VALUE
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRuleBasedNumberFormat.java1257 private static final com.ibm.icu.math.BigDecimal MAX_VALUE = com.ibm.icu.math.BigDecimal.valueOf(Long.MAX_VALUE); field in class:RuleBasedNumberFormat
1270 if (MIN_VALUE.compareTo(number) > 0 || MAX_VALUE.compareTo(number) < 0) {
1325 tempResult = ruleSets[i].parse(workingText, workingPos, Double.MAX_VALUE);
H A DMessagePattern.java789 private static final int MAX_VALUE=Short.MAX_VALUE; field in class:MessagePattern.Part
934 if(nestingLevel>Part.MAX_VALUE) {
1033 if(length>Part.MAX_LENGTH || number>Part.MAX_VALUE) {
1343 if(number>=Integer.MAX_VALUE/10) {
1403 if(value>(Part.MAX_VALUE+isNegative)) {
1556 if(numericIndex>Part.MAX_VALUE) {
H A DUnicodeSet.java74 * <code>MIN_VALUE-MAX_VALUE</code>
319 public static final int MAX_VALUE = HIGH - 1; field in class:UnicodeSet
784 // MIN_VALUE and MAX_VALUE, then the inverse representation will
788 getRangeEnd(count-1) == MAX_VALUE) {
1119 if (c < MIN_VALUE || c > MAX_VALUE) {
1195 if (start < MIN_VALUE || start > MAX_VALUE) {
1198 if (end < MIN_VALUE || end > MAX_VALUE) {
1241 if (c < MIN_VALUE || c > MAX_VALUE) {
1264 // TODO: Is the "list[i]-1" a typo? Even if you pass MAX_VALUE into
1266 // is "MAX_VALUE
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/lang/
H A DUCharacter.java49 * In particular, {@link Character#MAX_VALUE} is still a char with the value U+FFFF,
50 * while the {@link UCharacter#MAX_VALUE} is an int with the value U+10FFFF.
2143 if (ch > MAX_VALUE) {
3099 * <p>Up-to-date Unicode implementation of {@link Character#MAX_VALUE}
3102 public static final int MAX_VALUE = Character.MAX_CODE_POINT; field in class:UCharacter
3679 if (ch < MIN_VALUE || ch > MAX_VALUE) {
3748 ch <= UCharacter.MAX_VALUE;
3881 * <li> Out of bounds, less than 0 or greater than UCharacter.MAX_VALUE
3903 return (ch <= MAX_VALUE);
3910 * <li> Out of bounds, less than 0 or greater than UCharacter.MAX_VALUE
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUCharacter.java48 * In particular, {@link Character#MAX_VALUE} is still a char with the value U+FFFF,
49 * while the {@link UCharacter#MAX_VALUE} is an int with the value U+10FFFF.
2510 if (ch > MAX_VALUE) {
3645 * <p>Up-to-date Unicode implementation of {@link Character#MAX_VALUE}
3650 public static final int MAX_VALUE = Character.MAX_CODE_POINT; field in class:UCharacter
4254 if (ch < MIN_VALUE || ch > MAX_VALUE) {
4326 ch <= UCharacter.MAX_VALUE;
4467 * <li> Out of bounds, less than 0 or greater than UCharacter.MAX_VALUE
4490 return (ch <= MAX_VALUE);
4497 * <li> Out of bounds, less than 0 or greater than UCharacter.MAX_VALUE
[all...]
/external/caliper/lib/
H A Djoda-time-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/joda/ org/joda/time/ org/joda/time/base/ ...
/external/kotlinc/lib/
H A Dkotlin-runtime.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
H A Dkotlin-stdlib.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...

Completed in 715 milliseconds

12