Searched defs:dfs (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/test/java/libcore/java/text/
H A DOldDecimalFormatSymbolsTest.java27 DecimalFormatSymbols dfs; field in class:OldDecimalFormatSymbolsTest
30 dfs = new DecimalFormatSymbols();
57 assertDecimalFormatSymbolsRIFrance(dfs);
78 dfs.setMonetaryDecimalSeparator(',');
80 ',', dfs.getMonetaryDecimalSeparator());
114 dfs.setCurrencySymbol("$");
115 assertEquals("Returned incorrect CurrencySymbol symbol", "$", dfs.getCurrencySymbol());
119 dfs.setMonetaryDecimalSeparator('#');
121 '#', dfs.getMonetaryDecimalSeparator());
124 static void assertDecimalFormatSymbolsRIFrance(DecimalFormatSymbols dfs) { argument
[all...]
H A DDateFormatSymbolsTest.java33 DateFormatSymbols dfs = DateFormatSymbols.getInstance(locale);
34 assertEquals(DateFormatSymbols.getInstance(Locale.ROOT), dfs);
75 private String formatDate(Locale l, String fmt, DateFormatSymbols dfs) { argument
77 sdf.setDateFormatSymbols(dfs);
/libcore/luni/src/main/java/libcore/icu/
H A DNativeDecimalFormat.java121 public NativeDecimalFormat(String pattern, DecimalFormatSymbols dfs) { argument
123 this.address = open(pattern, dfs.getCurrencySymbol(),
124 dfs.getDecimalSeparator(), dfs.getDigit(), dfs.getExponentSeparator(),
125 dfs.getGroupingSeparator(), dfs.getInfinity(),
126 dfs.getInternationalCurrencySymbol(), dfs.getMinusSign(),
127 dfs
217 setDecimalFormatSymbols(final DecimalFormatSymbols dfs) argument
[all...]

Completed in 146 milliseconds