OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nf2
(Results
1 - 4
of
4
) sorted by null
/libcore/luni/src/test/java/libcore/java/text/
OldNumberFormatTest.java
172
NumberFormat
nf2
= (NumberFormat) nf1.clone();
local
175
assertTrue("Clonned object is not equal to object",
nf2
.equals(nf1));
176
assertTrue("Two clonned objects are not equal",
nf2
.equals(nf3));
178
assertTrue("Max digits value is incorrect for clonned object",
nf2
184
nf2
.getMaximumIntegerDigits() == max_digits);
190
NumberFormat
nf2
= NumberFormat.getInstance();
local
192
assertTrue("Objects are not equal", nf1.equals(
nf2
));
195
nf2
.setMaximumIntegerDigits(100);
196
assertFalse("Different NumberFormat are equal", nf1.equals(
nf2
));
198
nf2
.setMaximumIntegerDigits(nf1.getMaximumIntegerDigits())
220
NumberFormat
nf2
= NumberFormat.getInstance(deLocale);
local
247
NumberFormat
nf2
= NumberFormat.getInstance(deLocale);
local
523
NumberFormat
nf2
= NumberFormat.getInstance(Locale.US);
local
591
NumberFormat
nf2
= NumberFormat.getPercentInstance(csLocale);
local
[
all
...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DateFormatTest.java
317
NumberFormat
nf2
= format.getNumberFormat();
local
318
assertTrue("NumberFormats not identical", nf1 ==
nf2
);
/external/chromium_org/third_party/icu/source/test/intltest/
numrgts.cpp
265
MyNumberFormatTest *
nf2
= new MyNumberFormatTest();
local
268
nf2
->setGroupingUsed(TRUE);
270
if(nf1 ==
nf2
)
276
delete
nf2
;
[
all
...]
/external/icu/icu4c/source/test/intltest/
numrgts.cpp
265
MyNumberFormatTest *
nf2
= new MyNumberFormatTest();
local
268
nf2
->setGroupingUsed(TRUE);
270
if(nf1 ==
nf2
)
276
delete
nf2
;
[
all
...]
Completed in 2381 milliseconds