OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_value
(Results
276 - 300
of
2548
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/frameworks/base/tests/net/java/android/net/
UidRangeTest.java
44
UidRange original = new UidRange(1234, Integer.
MAX_VALUE
);
67
new UidRange(Integer.
MAX_VALUE
, Integer.
MAX_VALUE
);
/frameworks/base/tests/net/java/com/android/internal/util/
BitUtilsTest.java
39
assertEquals(127, uint8(Byte.
MAX_VALUE
));
52
assertEquals(32767, uint16(Short.
MAX_VALUE
));
81
assertEquals(2147483647L, uint32(Integer.
MAX_VALUE
));
/frameworks/rs/tests/java_api/LivePreview/src/com/android/rs/livepreview/
yuv.rs
58
float
max_value
= max(new_color.r, max(new_color.g, new_color.b));
59
if (
max_value
> 1.0f) {
60
new_color /=
max_value
;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
ParsePositionTest.java
63
assertTrue("getIndex failed.", pp.getIndex() == Integer.
MAX_VALUE
);
70
ParsePosition pp2 = new ParsePosition(Integer.
MAX_VALUE
);
109
pp = new ParsePosition(Integer.
MAX_VALUE
);
FieldPositionTest.java
189
fpos.setBeginIndex(Integer.
MAX_VALUE
);
190
assertEquals("beginIndex should have been set to Integer.
MAX_VALUE
",
191
Integer.
MAX_VALUE
, fpos.getBeginIndex());
205
fpos.setEndIndex(Integer.
MAX_VALUE
);
206
assertEquals("endIndex should have been set to Integer.
MAX_VALUE
",
207
Integer.
MAX_VALUE
, fpos.getEndIndex());
/libcore/luni/src/test/java/libcore/android/system/
StructTimespecTest.java
44
val = new StructTimespec(Long.
MAX_VALUE
, 999_999_999);
45
assertEquals(Long.
MAX_VALUE
, val.tv_sec);
74
new StructTimespec(Long.
MAX_VALUE
, 999_999_999)};
/libcore/luni/src/test/java/libcore/java/io/
RandomAccessFileTest.java
47
raf.seek(Long.
MAX_VALUE
);
57
raf.setLength(Long.
MAX_VALUE
);
68
long moreThanFourGig = ((long) Integer.
MAX_VALUE
) + 1L;
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTest.java
222
@TestAnnotation3(i = Integer.
MAX_VALUE
)
224
@TestAnnotation3(i = Integer.
MAX_VALUE
)
227
@TestAnnotation3(i = Integer.
MAX_VALUE
)
241
@TestAnnotation3(j = Long.
MAX_VALUE
)
243
@TestAnnotation3(j = Long.
MAX_VALUE
)
246
@TestAnnotation3(j = Long.
MAX_VALUE
)
260
@TestAnnotation3(f = Float.
MAX_VALUE
)
262
@TestAnnotation3(f = Float.
MAX_VALUE
)
270
@TestAnnotation3(f = Long.
MAX_VALUE
)
289
@TestAnnotation3(d = Double.
MAX_VALUE
)
[
all
...]
/libcore/ojluni/src/main/java/sun/misc/
DoubleConsts.java
44
public static final double
MAX_VALUE
= java.lang.Double.
MAX_VALUE
;
67
* <code>Math.ilogb(Double.
MAX_VALUE
)</code>.
FloatConsts.java
44
public static final float
MAX_VALUE
= java.lang.Float.
MAX_VALUE
;
63
* <code>Math.ilogb(Float.
MAX_VALUE
)</code>.
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DocumentsAdapter.java
49
public static final int ITEM_TYPE_SECTION_BREAK = Integer.
MAX_VALUE
;
50
public static final int ITEM_TYPE_HEADER_MESSAGE = Integer.
MAX_VALUE
- 1;
51
public static final int ITEM_TYPE_INFLATED_MESSAGE = Integer.
MAX_VALUE
- 2;
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
PascalDistributionImpl.java
148
return Integer.
MAX_VALUE
- 1;
192
* Returns <code>-1</code> for p=0 and <code>Integer.
MAX_VALUE
</code>
209
ret = Integer.
MAX_VALUE
;
234
* by <code>Integer.
MAX_VALUE
</code> together with
237
* @return upper bound of the support (always <code>Integer.
MAX_VALUE
</code> for positive infinity)
241
return Integer.
MAX_VALUE
;
/external/guava/guava-tests/test/com/google/common/util/concurrent/
StripedTest.java
130
Striped<Lock> stripedLock = Striped.lazyWeakLock(Integer.
MAX_VALUE
);
199
Striped.lazyWeakLock(Integer.
MAX_VALUE
),
200
Striped.lazyWeakSemaphore(Integer.
MAX_VALUE
, Integer.
MAX_VALUE
),
201
Striped.lazyWeakReadWriteLock(Integer.
MAX_VALUE
))) {
204
striped.getAt(Integer.
MAX_VALUE
- i);
/external/smali/util/src/test/java/org/jf/util/
NumberUtilsTest.java
54
Assert.assertTrue(NumberUtils.isLikelyFloat(Float.floatToRawIntBits(Float.
MAX_VALUE
)));
80
Assert.assertFalse(NumberUtils.isLikelyFloat(Integer.
MAX_VALUE
));
83
Assert.assertFalse(NumberUtils.isLikelyFloat(Short.
MAX_VALUE
));
103
Assert.assertTrue(NumberUtils.isLikelyDouble(Double.doubleToRawLongBits(Double.
MAX_VALUE
)));
123
Assert.assertFalse(NumberUtils.isLikelyDouble(Integer.
MAX_VALUE
));
126
Assert.assertFalse(NumberUtils.isLikelyDouble(Short.
MAX_VALUE
));
/external/webrtc/webrtc/modules/audio_coding/neteq/
statistics_calculator.cc
32
int
max_value
)
35
max_value_(
max_value
),
59
int
max_value
)
60
: PeriodicUmaLogger(uma_name, report_interval_ms,
max_value
) {
83
int
max_value
)
84
: PeriodicUmaLogger(uma_name, report_interval_ms,
max_value
) {
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusionEngine.java
69
mNetworkLocation.setAccuracy(Float.
MAX_VALUE
);
71
mGpsLocation.setAccuracy(Float.
MAX_VALUE
);
164
long networkInterval = Long.
MAX_VALUE
;
165
long gpsInterval = Long.
MAX_VALUE
;
187
if (gpsInterval < Long.
MAX_VALUE
) {
192
if (networkInterval < Long.
MAX_VALUE
) {
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
SingleRowTest.java
59
mSingleRow.appendVisibleItems(Integer.
MAX_VALUE
);
72
mSingleRow.appendVisibleItems(Integer.
MAX_VALUE
);
138
mSingleRow.removeInvisibleItemsAtFront(Integer.
MAX_VALUE
, 0);
161
mSingleRow.removeInvisibleItemsAtFront(Integer.
MAX_VALUE
, 0);
226
mSingleRow.removeInvisibleItemsAtFront(Integer.
MAX_VALUE
, 0);
253
mSingleRow.removeInvisibleItemsAtFront(Integer.
MAX_VALUE
, 0);
/libcore/luni/src/test/java/libcore/java/lang/
LongTest.java
41
final long max = Long.
MAX_VALUE
;
57
assertEquals(1, Long.signum(Long.
MAX_VALUE
));
89
assertEquals(Long.
MAX_VALUE
, Long.parseLong("+" + Long.
MAX_VALUE
, 10));
115
assertEquals(Long.
MAX_VALUE
, Long.decode("+" + Long.
MAX_VALUE
).longValue());
/art/test/415-optimizing-arith-neg/src/
Main.java
138
assertEquals(-Float.
MAX_VALUE
, $opt$noinline$NegFloat(Float.
MAX_VALUE
));
139
assertEquals(Float.
MAX_VALUE
, $opt$noinline$NegFloat(-Float.
MAX_VALUE
));
163
assertEquals(-Double.
MAX_VALUE
, $opt$noinline$NegDouble(Double.
MAX_VALUE
));
164
assertEquals(Double.
MAX_VALUE
, $opt$noinline$NegDouble(-Double.
MAX_VALUE
));
/cts/common/device-side/device-info/tests/src/com/android/compatibility/common/deviceinfo/
TestDeviceInfo.java
45
store.addResult("test_long", Long.
MAX_VALUE
);
58
store.addResult("test_long", Long.
MAX_VALUE
);
/cts/tests/tests/database/src/android/database/cts/
MatrixCursor_RowBuilderTest.java
57
builder.add(Integer.
MAX_VALUE
);
63
assertEquals(Integer.
MAX_VALUE
, cursor.getInt(COLUMN2_INDEX));
MergeCursorTest.java
54
private static final int
MAX_VALUE
= 10;
55
private static final int HALF_VALUE =
MAX_VALUE
/ 2;
91
for (int i = 0; i <
MAX_VALUE
; i++) {
131
final double NUMBER_DOUBLE = Double.
MAX_VALUE
;
246
assertEquals(
MAX_VALUE
, mergeCursor.getInt(NUMBER_1_COLUMN_INDEX));
284
final String TEST_VALUE1 = Integer.toString(
MAX_VALUE
+ 1);
285
final String TEST_VALUE2 = Integer.toString(
MAX_VALUE
+ 2);
337
addValuesIntoTable(TABLE2_NAME, HALF_VALUE + 1,
MAX_VALUE
);
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
Animatable2Callback.java
34
private long mStartNs = Long.
MAX_VALUE
;
98
assertTrue(mStartNs != Long.
MAX_VALUE
);
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_int/
Test_and_int.java
59
* @title Arguments = Integer.
MAX_VALUE
& Integer.MIN_VALUE
63
assertEquals(0, t.run(Integer.
MAX_VALUE
, Integer.MIN_VALUE));
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_int_2addr/
Test_and_int_2addr.java
58
* @title Arguments = Integer.
MAX_VALUE
& Integer.MIN_VALUE
62
assertEquals(0, t.run(Integer.
MAX_VALUE
, Integer.MIN_VALUE));
Completed in 888 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>