OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toMax
(Results
1 - 7
of
7
) sorted by null
/external/icu/android_icu4j/src/main/java/android/icu/util/
UniversalTimeScale.java
286
toMax
= theToMax;
297
long
toMax
;
543
return data.
toMax
;
569
if (universalTime >= data.toMin && universalTime <= data.
toMax
) {
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timescale/
TimeScaleAPITest.java
321
long
toMax
= UniversalTimeScale.getTimeScaleValue(scale, UniversalTimeScale.TO_MAX_VALUE);
347
result = UniversalTimeScale.toLong(
toMax
, scale);
348
logln("toLong(
toMax
, " + scale + ") returned " + result);
350
errln("toLong(
toMax
, " + scale + ") threw IllegalArgumentException.");
353
if (
toMax
< Long.MAX_VALUE) {
355
result = UniversalTimeScale.toLong(
toMax
+ 1, scale);
356
errln("toLong(
toMax
+ 1, " + scale + ") did not throw IllegalArgumentException.");
TimeScaleDataTest.java
125
long
toMax
= UniversalTimeScale.getTimeScaleValue(scale, UniversalTimeScale.TO_MAX_VALUE);
128
toLimitTest(
toMax
, fromMax, scale);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
UniversalTimeScale.java
322
toMax
= theToMax;
333
long
toMax
;
595
return data.
toMax
;
621
if (universalTime >= data.toMin && universalTime <= data.
toMax
) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timescale/
TimeScaleAPITest.java
318
long
toMax
= UniversalTimeScale.getTimeScaleValue(scale, UniversalTimeScale.TO_MAX_VALUE);
344
result = UniversalTimeScale.toLong(
toMax
, scale);
345
logln("toLong(
toMax
, " + scale + ") returned " + result);
347
errln("toLong(
toMax
, " + scale + ") threw IllegalArgumentException.");
350
if (
toMax
< Long.MAX_VALUE) {
352
result = UniversalTimeScale.toLong(
toMax
+ 1, scale);
353
errln("toLong(
toMax
+ 1, " + scale + ") did not throw IllegalArgumentException.");
TimeScaleDataTest.java
122
long
toMax
= UniversalTimeScale.getTimeScaleValue(scale, UniversalTimeScale.TO_MAX_VALUE);
125
toLimitTest(
toMax
, fromMax, scale);
/external/icu/icu4c/source/test/cintltst/
utmstest.c
188
int64_t
toMax
= utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_TO_MAX_VALUE, &status);
191
toLimitTest(
toMax
, fromMax, (UDateTimeScale)scale);
269
int64_t toMin,
toMax
;
273
toMax
= utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_TO_MAX_VALUE, &status);
297
result = utmscale_toInt64(
toMax
, (UDateTimeScale)scale, &status);
299
log_err("utmscale_toInt64(
toMax
, %d, &status) generated U_ILLEGAL_ARGUMENT_ERROR.\n", scale);
302
if (
toMax
< U_INT64_MAX) {
304
result = utmscale_toInt64(
toMax
+ 1, (UDateTimeScale)scale, &status);
306
log_err("utmscale_toInt64(
toMax
+ 1, %d, &status) did not generate U_ILLEGAL_ARGUMENT_ERROR.\n", scale);
Completed in 256 milliseconds