Searched refs:localeName (Results 1 - 25 of 99) sorted by relevance

1234

/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DPeriodFormatter.java41 * @param localeName the name of the new locale
44 PeriodFormatter withLocale(String localeName); argument
H A DBasicDurationFormatterFactory.java32 private String localeName; field in class:BasicDurationFormatterFactory
41 this.localeName = Locale.getDefault().toString();
117 * @param localeName the name of the Locale
121 public DurationFormatterFactory setLocale(String localeName) { argument
122 if (!localeName.equals(this.localeName)) {
123 this.localeName = localeName;
125 builder = builder.withLocale(localeName);
128 formatter = formatter.withLocale(localeName);
[all...]
H A DDateFormatter.java45 DateFormatter withLocale(String localeName); argument
H A DDurationFormatter.java67 * @param localeName the name of the new locale
70 DurationFormatter withLocale(String localeName); argument
H A DPeriodBuilder.java50 PeriodBuilder withLocale(String localeName); argument
H A DPeriodFormatterFactory.java27 * @param localeName the name of the Locale
30 public PeriodFormatterFactory setLocale(String localeName); argument
H A DBasicPeriodFormatterFactory.java64 private String localeName; field in class:BasicPeriodFormatterFactory
70 this.localeName = Locale.getDefault().toString();
87 public PeriodFormatterFactory setLocale(String localeName) { argument
89 this.localeName = localeName;
201 return new BasicPeriodFormatter(this, localeName, getData(),
216 data = ds.get(localeName);
H A DBasicDurationFormatter.java24 private String localeName; field in class:BasicDurationFormatter
46 String localeName,
52 this.localeName = localeName;
80 if (!locName.equals(localeName)) {
102 localeName, tz);
42 BasicDurationFormatter(PeriodFormatter formatter, PeriodBuilder builder, DateFormatter fallback, long fallbackLimit, String localeName, TimeZone timeZone) argument
H A DDurationFormatterFactory.java63 * @param localeName the name of the Locale
66 public DurationFormatterFactory setLocale(String localeName); argument
H A DPeriodBuilderFactory.java89 PeriodBuilderFactory setLocale(String localeName); argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriodFormatter.java39 * @param localeName the name of the new locale
42 PeriodFormatter withLocale(String localeName); argument
H A DBasicDurationFormatterFactory.java31 private String localeName; field in class:BasicDurationFormatterFactory
40 this.localeName = Locale.getDefault().toString();
116 * @param localeName the name of the Locale
120 public DurationFormatterFactory setLocale(String localeName) { argument
121 if (!localeName.equals(this.localeName)) {
122 this.localeName = localeName;
124 builder = builder.withLocale(localeName);
127 formatter = formatter.withLocale(localeName);
[all...]
H A DDateFormatter.java43 DateFormatter withLocale(String localeName); argument
H A DDurationFormatter.java65 * @param localeName the name of the new locale
68 DurationFormatter withLocale(String localeName); argument
H A DPeriodBuilder.java48 PeriodBuilder withLocale(String localeName); argument
H A DPeriodFormatterFactory.java25 * @param localeName the name of the Locale
28 public PeriodFormatterFactory setLocale(String localeName); argument
H A DBasicPeriodFormatterFactory.java62 private String localeName; field in class:BasicPeriodFormatterFactory
68 this.localeName = Locale.getDefault().toString();
85 public PeriodFormatterFactory setLocale(String localeName) { argument
87 this.localeName = localeName;
199 return new BasicPeriodFormatter(this, localeName, getData(),
214 data = ds.get(localeName);
H A DBasicDurationFormatter.java23 private String localeName; field in class:BasicDurationFormatter
45 String localeName,
51 this.localeName = localeName;
79 if (!locName.equals(localeName)) {
101 localeName, tz);
41 BasicDurationFormatter(PeriodFormatter formatter, PeriodBuilder builder, DateFormatter fallback, long fallbackLimit, String localeName, TimeZone timeZone) argument
H A DDurationFormatterFactory.java61 * @param localeName the name of the Locale
64 public DurationFormatterFactory setLocale(String localeName); argument
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
H A DResourceBasedPeriodFormatterDataService.java88 public PeriodFormatterData get(String localeName) { argument
90 int x = localeName.indexOf('@');
92 localeName = localeName.substring(0, x);
96 if (lastLocale != null && lastLocale.equals(localeName)) {
100 PeriodFormatterData ld = cache.get(localeName);
102 String ln = localeName;
131 ld = new PeriodFormatterData(localeName, dr);
142 "Duration data not found for " + localeName, PATH,
143 localeName);
[all...]
H A DPeriodFormatterDataService.java24 * @param localeName the name of the locale
27 public abstract PeriodFormatterData get(String localeName); argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DPeriodFormatterDataService.java22 * @param localeName the name of the locale
25 public abstract PeriodFormatterData get(String localeName); argument
H A DResourceBasedPeriodFormatterDataService.java86 public PeriodFormatterData get(String localeName) { argument
88 int x = localeName.indexOf('@');
90 localeName = localeName.substring(0, x);
94 if (lastLocale != null && lastLocale.equals(localeName)) {
98 PeriodFormatterData ld = cache.get(localeName);
100 String ln = localeName;
129 ld = new PeriodFormatterData(localeName, dr);
140 "Duration data not found for " + localeName, PATH,
141 localeName);
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DTestDataModule.java44 static final TestDataModule get(String baseName, String localeName) throws DataModuleFormatError { argument
45 return new ResourceModule(baseName, localeName);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestDataModule.java43 static final TestDataModule get(String baseName, String localeName) throws DataModuleFormatError { argument
44 return new ResourceModule(baseName, localeName);

Completed in 841 milliseconds

1234