HomeSort by relevance Sort by last modified time
    Searched refs:FormatWidth (Results 1 - 25 of 35) sorted by null

1 2

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralRangesTest.java 22 import android.icu.text.MeasureFormat.FormatWidth;
70 FormatWidth width = FormatWidth.valueOf(test[1]);
81 {0.0, 1.0, ULocale.FRANCE, FormatWidth.WIDE, MeasureUnit.FAHRENHEIT, "0?1 degré Fahrenheit"},
82 {1.0, 2.0, ULocale.FRANCE, FormatWidth.WIDE, MeasureUnit.FAHRENHEIT, "1?2 degrés Fahrenheit"},
83 {3.1, 4.25, ULocale.FRANCE, FormatWidth.SHORT, MeasureUnit.FAHRENHEIT, "3,1?4,25 °F"},
84 {3.1, 4.25, ULocale.ENGLISH, FormatWidth.SHORT, MeasureUnit.FAHRENHEIT, "3.1?4.25°F"},
85 {3.1, 4.25, ULocale.CHINESE, FormatWidth.WIDE, MeasureUnit.INCH, "3.1-4.25??"},
86 {0.0, 1.0, ULocale.ENGLISH, FormatWidth.WIDE, MeasureUnit.INCH, "0?1 inches"},
88 {0.0, 1.0, ULocale.ENGLISH, FormatWidth.NARROW, Currency.getInstance("EUR"), "?0.00?1.00"}
    [all...]
MeasureUnitTest.java 43 import android.icu.text.MeasureFormat.FormatWidth;
    [all...]
TimeUnitTest.java 444 assertEquals("getWidth", MeasureFormat.FormatWidth.WIDE, tuf.getWidth());
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralRangesTest.java 21 import com.ibm.icu.text.MeasureFormat.FormatWidth;
67 FormatWidth width = FormatWidth.valueOf(test[1]);
78 {0.0, 1.0, ULocale.FRANCE, FormatWidth.WIDE, MeasureUnit.FAHRENHEIT, "0?1 degré Fahrenheit"},
79 {1.0, 2.0, ULocale.FRANCE, FormatWidth.WIDE, MeasureUnit.FAHRENHEIT, "1?2 degrés Fahrenheit"},
80 {3.1, 4.25, ULocale.FRANCE, FormatWidth.SHORT, MeasureUnit.FAHRENHEIT, "3,1?4,25 °F"},
81 {3.1, 4.25, ULocale.ENGLISH, FormatWidth.SHORT, MeasureUnit.FAHRENHEIT, "3.1?4.25°F"},
82 {3.1, 4.25, ULocale.CHINESE, FormatWidth.WIDE, MeasureUnit.INCH, "3.1-4.25??"},
83 {0.0, 1.0, ULocale.ENGLISH, FormatWidth.WIDE, MeasureUnit.INCH, "0?1 inches"},
85 {0.0, 1.0, ULocale.ENGLISH, FormatWidth.NARROW, Currency.getInstance("EUR"), "?0.00?1.00"}
    [all...]
MeasureUnitTest.java 42 import com.ibm.icu.text.MeasureFormat.FormatWidth;
    [all...]
TimeUnitTest.java 441 assertEquals("getWidth", MeasureFormat.FormatWidth.WIDE, tuf.getWidth());
  /external/icu/android_icu4j/src/main/java/android/icu/text/
MeasureFormat.java 64 * ULocale.FRENCH, FormatWidth.SHORT);
76 * ULocale.FRENCH, FormatWidth.WIDE);
88 ULocale.FRENCH, FormatWidth.NARROW);
95 * MeasureFormat fmtEn = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.WIDE);
124 private final transient FormatWidth formatWidth;
160 public enum FormatWidth {
191 private FormatWidth(ListFormatter.Style style, int currencyStyle) {
206 * Create a format from the locale, formatWidth, and format.
209 * @param formatWidth hints how long formatted strings should be
    [all...]
CurrencyFormat.java 46 mf = MeasureFormat.getInstance(locale, FormatWidth.WIDE);
99 public MeasureFormat.FormatWidth getWidth() {
TimeUnitFormat.java 74 * @deprecated ICU 53 see {@link MeasureFormat.FormatWidth}
81 * @deprecated ICU 53 see {@link MeasureFormat.FormatWidth}
122 mf = MeasureFormat.getInstance(ULocale.getDefault(), FormatWidth.WIDE);
161 locale, style == FULL_NAME ? FormatWidth.WIDE : FormatWidth.SHORT);
592 public MeasureFormat.FormatWidth getWidth() {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MeasureFormat.java 63 * ULocale.FRENCH, FormatWidth.SHORT);
75 * ULocale.FRENCH, FormatWidth.WIDE);
87 ULocale.FRENCH, FormatWidth.NARROW);
94 * MeasureFormat fmtEn = MeasureFormat.getInstance(ULocale.ENGLISH, FormatWidth.WIDE);
124 private final transient FormatWidth formatWidth;
162 public enum FormatWidth {
201 private FormatWidth(ListFormatter.Style style, int currencyStyle) {
216 * Create a format from the locale, formatWidth, and format.
219 * @param formatWidth hints how long formatted strings should be
    [all...]
CurrencyFormat.java 45 mf = MeasureFormat.getInstance(locale, FormatWidth.WIDE);
98 public MeasureFormat.FormatWidth getWidth() {
TimeUnitFormat.java 72 * @deprecated ICU 53 see {@link MeasureFormat.FormatWidth}
79 * @deprecated ICU 53 see {@link MeasureFormat.FormatWidth}
120 mf = MeasureFormat.getInstance(ULocale.getDefault(), FormatWidth.WIDE);
159 locale, style == FULL_NAME ? FormatWidth.WIDE : FormatWidth.SHORT);
590 public MeasureFormat.FormatWidth getWidth() {
  /frameworks/base/core/java/android/text/format/
DateUtils.java 23 import android.icu.text.MeasureFormat.FormatWidth;
380 final FormatWidth width;
383 width = FormatWidth.WIDE;
388 width = FormatWidth.SHORT;
391 width = FormatWidth.NARROW;
394 width = FormatWidth.WIDE;
    [all...]
Formatter.java 239 locale, MeasureFormat.FormatWidth.SHORT);
280 locale, MeasureFormat.FormatWidth.SHORT);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/utils/
StringUtil.java 21 import android.icu.text.MeasureFormat.FormatWidth;
96 locale, FormatWidth.SHORT);
PowerUtil.java 22 import android.icu.text.MeasureFormat.FormatWidth;
124 final MeasureFormat frmt = MeasureFormat.getInstance(currentLocale, FormatWidth.SHORT);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
PropertiesTest.java 40 import android.icu.text.MeasureFormat.FormatWidth;
256 } else if (type == FormatWidth.class) {
258 FormatWidth[] values = FormatWidth.values();
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
PropertiesTest.java 39 import com.ibm.icu.text.MeasureFormat.FormatWidth;
253 } else if (type == FormatWidth.class) {
255 FormatWidth[] values = FormatWidth.values();
  /frameworks/base/core/java/android/widget/
Chronometer.java 23 import android.icu.text.MeasureFormat.FormatWidth;
381 return MeasureFormat.getInstance(Locale.getDefault(), FormatWidth.WIDE)
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 257 size_t FormatWidth = sizeof(T) * 2;
260 << format_hex(TLSDir->StartAddressOfRawData, FormatWidth)
262 << format_hex(TLSDir->EndAddressOfRawData, FormatWidth)
264 << format_hex(TLSDir->AddressOfIndex, FormatWidth)
266 << format_hex(TLSDir->AddressOfCallBacks, FormatWidth)
  /external/pdfium/core/fxcrt/
bytestring_unittest.cpp     [all...]
widestring_unittest.cpp     [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
icu4j-53.1.jar 

Completed in 2305 milliseconds

1 2