OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dfFoo
(Results
1 - 3
of
3
) sorted by null
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberRegressionTests.java
428
DecimalFormat
dfFoo
= new DecimalFormat("000");
431
dfFoo
.applyPattern("0000;-000");
432
if (!
dfFoo
.toPattern().equals("0000"))
433
errln("
dfFoo
.toPattern : " +
dfFoo
.toPattern());
434
logln(
dfFoo
.format(42));
435
logln(
dfFoo
.format(-42));
436
dfFoo
.applyPattern("000;-000");
437
if (!
dfFoo
.toPattern().equals("000"))
438
errln("
dfFoo
.toPattern : " + dfFoo.toPattern())
[
all
...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberRegressionTests.java
425
DecimalFormat
dfFoo
= new DecimalFormat("000");
428
dfFoo
.applyPattern("0000;-000");
429
if (!
dfFoo
.toPattern().equals("0000"))
430
errln("
dfFoo
.toPattern : " +
dfFoo
.toPattern());
431
logln(
dfFoo
.format(42));
432
logln(
dfFoo
.format(-42));
433
dfFoo
.applyPattern("000;-000");
434
if (!
dfFoo
.toPattern().equals("000"))
435
errln("
dfFoo
.toPattern : " + dfFoo.toPattern())
[
all
...]
/external/icu/icu4c/source/test/intltest/
numrgts.cpp
799
DecimalFormat *
dfFoo
= new DecimalFormat(UnicodeString("000"), status);
802
delete
dfFoo
;
808
dfFoo
->applyPattern("0000;-000", status);
809
failure(status, "
dfFoo
->applyPattern");
811
if (
dfFoo
->toPattern(temp) != UnicodeString("0000"))
812
errln("ERROR:
dfFoo
.toPattern : " +
dfFoo
->toPattern(temp));
814
logln(
dfFoo
->format((int32_t)42, temp, pos));
815
logln(
dfFoo
->format((int32_t)-42, temp, pos));
816
dfFoo
->applyPattern("000;-000", status)
[
all
...]
Completed in 264 milliseconds