OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nf2
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/test/java/libcore/java/text/
OldNumberFormatTest.java
177
NumberFormat
nf2
= (NumberFormat) nf1.clone();
local
180
assertTrue("Clonned object is not equal to object",
nf2
.equals(nf1));
181
assertTrue("Two clonned objects are not equal",
nf2
.equals(nf3));
183
assertTrue("Max digits value is incorrect for clonned object",
nf2
189
nf2
.getMaximumIntegerDigits() == max_digits);
195
NumberFormat
nf2
= NumberFormat.getInstance();
local
197
assertTrue("Objects are not equal", nf1.equals(
nf2
));
200
nf2
.setMaximumIntegerDigits(100);
201
assertFalse("Different NumberFormat are equal", nf1.equals(
nf2
));
203
nf2
.setMaximumIntegerDigits(nf1.getMaximumIntegerDigits())
226
NumberFormat
nf2
= NumberFormat.getInstance(deLocale);
local
255
NumberFormat
nf2
= NumberFormat.getInstance(deLocale);
local
537
NumberFormat
nf2
= NumberFormat.getInstance(Locale.US);
local
606
NumberFormat
nf2
= NumberFormat.getPercentInstance(csLocale);
local
[
all
...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DateFormatTest.java
317
NumberFormat
nf2
= format.getNumberFormat();
local
318
assertTrue("NumberFormats not identical", nf1 ==
nf2
);
/external/icu4c/test/intltest/
numrgts.cpp
260
MyNumberFormatTest *
nf2
= new MyNumberFormatTest();
local
263
nf2
->setGroupingUsed(TRUE);
265
if(nf1 ==
nf2
)
271
delete
nf2
;
[
all
...]
Completed in 607 milliseconds