/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/ |
Calendar.java | 14 import com.ibm.icu.util.ULocale.Category; 41 * <p>When a <code>ULocale</code> is used by <code>getInstance</code>, its 47 * <pre>Calendar cal = Calendar.getInstance(new ULocale("en_US@calendar=japanese"));</pre> [all...] |
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/ |
DecimalFormatSymbols.java | 15 import com.ibm.icu.util.ULocale; 16 import com.ibm.icu.util.ULocale.Category; 59 this(new java.text.DecimalFormatSymbols(ULocale.getDefault(Category.FORMAT).toLocale())); 76 public DecimalFormatSymbols(ULocale locale) { 125 public static DecimalFormatSymbols getInstance(ULocale locale) { 153 // * returns the array of <code>ULocale</code>s available in this class. ICU currently 157 // * @return An array of <code>ULocale</code>s for which localized 162 // public static ULocale[] getAvailableULocales() { 650 // public ULocale getULocale() { 666 // * com.ibm.icu.util.ULocale#VALID_LOCALE} or {@lin [all...] |
MessageFormat.java | 27 import com.ibm.icu.util.ULocale; 28 import com.ibm.icu.util.ULocale.Category; 440 this(new java.text.MessageFormat(pattern, ULocale.getDefault(Category.FORMAT).toLocale())); 473 public MessageFormat(String pattern, ULocale locale) { 501 public void setLocale(ULocale locale) { 521 public ULocale getULocale() { 522 return ULocale.forLocale(messageFormat.getLocale()); [all...] |
DateFormat.java | 20 import com.ibm.icu.util.ULocale; 21 import com.ibm.icu.util.ULocale.Category; 137 ULocale.getDefault(Category.FORMAT).toLocale()); [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
TimeUnitFormat.java | 27 import android.icu.util.ULocale; 28 import android.icu.util.ULocale.Category; 46 * format.setLocale(new ULocale("en")); 90 private ULocale locale; 119 mf = MeasureFormat.getInstance(ULocale.getDefault(), FormatWidth.WIDE); 125 * Create TimeUnitFormat given a ULocale, and using full name style. 130 public TimeUnitFormat(ULocale locale) { 145 * Create TimeUnitFormat given a ULocale and a formatting style. 153 public TimeUnitFormat(ULocale locale, int style) { 161 // Needed for getLocale(ULocale.VALID_LOCALE [all...] |
RuleBasedNumberFormat.java | 26 import android.icu.util.ULocale; 27 import android.icu.util.ULocale.Category; 592 private ULocale locale = null; [all...] |
DateFormatSymbols.java | 30 import android.icu.util.ULocale; 31 import android.icu.util.ULocale.Category; 217 this(ULocale.getDefault(Category.FORMAT)); 229 this(ULocale.forLocale(locale)); 234 * resources for the given ulocale. 239 public DateFormatSymbols(ULocale locale) 284 public static DateFormatSymbols getInstance(ULocale locale) { 309 * this method simply returns the array of <code>ULocale</code>s available in this 313 * @return An array of <code>ULocale</code>s for which localized 317 public static ULocale[] getAvailableULocales() [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
TimeUnitFormat.java | 26 import com.ibm.icu.util.ULocale; 27 import com.ibm.icu.util.ULocale.Category; 45 * format.setLocale(new ULocale("en")); 88 private ULocale locale; 117 mf = MeasureFormat.getInstance(ULocale.getDefault(), FormatWidth.WIDE); 123 * Create TimeUnitFormat given a ULocale, and using full name style. 128 public TimeUnitFormat(ULocale locale) { 143 * Create TimeUnitFormat given a ULocale and a formatting style. 151 public TimeUnitFormat(ULocale locale, int style) { 159 // Needed for getLocale(ULocale.VALID_LOCALE [all...] |
RuleBasedNumberFormat.java | 25 import com.ibm.icu.util.ULocale; 26 import com.ibm.icu.util.ULocale.Category; 595 private ULocale locale = null; [all...] |
DateFormatSymbols.java | 29 import com.ibm.icu.util.ULocale; 30 import com.ibm.icu.util.ULocale.Category; 221 this(ULocale.getDefault(Category.FORMAT)); 234 this(ULocale.forLocale(locale)); 239 * resources for the given ulocale. 245 public DateFormatSymbols(ULocale locale) 293 public static DateFormatSymbols getInstance(ULocale locale) { 319 * this method simply returns the array of <code>ULocale</code>s available in this 323 * @return An array of <code>ULocale</code>s for which localized 328 public static ULocale[] getAvailableULocales() [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
DateTimeGeneratorTest.java | 38 import android.icu.util.ULocale; 61 ULocale locale = ULocale.GERMANY; 93 DateTimePatternGenerator enGen = DateTimePatternGenerator.getInstance(ULocale.ENGLISH); 95 SimpleDateFormat enFormat = (SimpleDateFormat)DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL, ULocale.ENGLISH); 129 DateTimePatternGenerator rootGen = DateTimePatternGenerator.getInstance(ULocale.ROOT); 130 SimpleDateFormat rootFormat = new SimpleDateFormat(rootGen.getBestPattern("yMdHms"), ULocale.ROOT); 139 SimpleDateFormat format = new SimpleDateFormat(nullGen.getBestPattern("yMdHms"), ULocale.ROOT); 224 ULocale uLocale = null [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
DateTimeGeneratorTest.java | 37 import com.ibm.icu.util.ULocale; 57 ULocale locale = ULocale.GERMANY; 89 DateTimePatternGenerator enGen = DateTimePatternGenerator.getInstance(ULocale.ENGLISH); 91 SimpleDateFormat enFormat = (SimpleDateFormat)DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL, ULocale.ENGLISH); 125 DateTimePatternGenerator rootGen = DateTimePatternGenerator.getInstance(ULocale.ROOT); 126 SimpleDateFormat rootFormat = new SimpleDateFormat(rootGen.getBestPattern("yMdHms"), ULocale.ROOT); 135 SimpleDateFormat format = new SimpleDateFormat(nullGen.getBestPattern("yMdHms"), ULocale.ROOT); 220 ULocale uLocale = null [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
FormatTests.java | 50 import android.icu.util.ULocale; 713 private static DateFormatSymbols getCannedDateFormatSymbols(ULocale uloc) 724 private static SimpleDateFormat getCannedSimpleDateFormat(String pattern, ULocale uloc) 991 private static DecimalFormatSymbols getCannedDecimalFormatSymbols(ULocale uloc) 1000 private static DecimalFormat getCannedDecimalFormat(String pattern, ULocale uloc) 1021 DateFormat.getDateInstance(DateFormat.RELATIVE_LONG,new ULocale("en")), 1022 DateFormat.getDateInstance(DateFormat.RELATIVE_SHORT,new ULocale("ru")), 1042 DurationFormat.getInstance(new ULocale("en")) 1065 ULocale uloc = ULocale.forLocale(Locale.US) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
FormatTests.java | 49 import com.ibm.icu.util.ULocale; 712 private static DateFormatSymbols getCannedDateFormatSymbols(ULocale uloc) 723 private static SimpleDateFormat getCannedSimpleDateFormat(String pattern, ULocale uloc) 990 private static DecimalFormatSymbols getCannedDecimalFormatSymbols(ULocale uloc) 999 private static DecimalFormat getCannedDecimalFormat(String pattern, ULocale uloc) 1020 DateFormat.getDateInstance(DateFormat.RELATIVE_LONG,new ULocale("en")), 1021 DateFormat.getDateInstance(DateFormat.RELATIVE_SHORT,new ULocale("ru")), 1041 DurationFormat.getInstance(new ULocale("en")) 1064 ULocale uloc = ULocale.forLocale(Locale.US) [all...] |
/external/icu/android_icu4j/cts-coverage/src/main/tests/android/icu/cts/coverage/text/ |
DateIntervalFormatTest.java | 26 import android.icu.util.ULocale; 45 DateIntervalInfo dateIntervalInfo = new DateIntervalInfo(new ULocale("ca")); 62 DateIntervalInfo dateIntervalInfo = new DateIntervalInfo(new ULocale("ca"));
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
CollationTailoring.java | 21 import android.icu.util.ULocale; 107 public ULocale actualLocale = ULocale.ROOT;
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
ChineseCalendar.java | 18 import android.icu.util.ULocale.Category; 77 * {@link android.icu.util.Calendar#getInstance(ULocale)} passing in a <code>ULocale</code> 148 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 157 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 198 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 256 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 278 this(TimeZone.getDefault(), ULocale.forLocale(aLocale), CHINESE_EPOCH_YEAR, CHINA_ZONE); 288 this(zone, ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 298 this(zone, ULocale.forLocale(aLocale), CHINESE_EPOCH_YEAR, CHINA_ZONE) [all...] |
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/ |
LocaleIDs.java | 11 import com.ibm.icu.util.ULocale; 356 synchronized (ULocale.class) { 504 synchronized (ULocale.class) {
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationTailoring.java | 20 import com.ibm.icu.util.ULocale; 105 public ULocale actualLocale = ULocale.ROOT;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
ChineseCalendar.java | 17 import com.ibm.icu.util.ULocale.Category; 76 * {@link com.ibm.icu.util.Calendar#getInstance(ULocale)} passing in a <code>ULocale</code> 149 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 159 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 202 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 262 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 285 this(TimeZone.getDefault(), ULocale.forLocale(aLocale), CHINESE_EPOCH_YEAR, CHINA_ZONE); 296 this(zone, ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE); 307 this(zone, ULocale.forLocale(aLocale), CHINESE_EPOCH_YEAR, CHINA_ZONE) [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
LocaleSet.java | 21 import android.icu.util.ULocale; 77 return ULocale.addLikelySubtags(ULocale.forLocale(locale)).getScript();
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
TestUScript.java | 19 import android.icu.util.ULocale; 56 final ULocale[] testNames={ 58 new ULocale("en"), new ULocale("en_US"), 59 new ULocale("sr"), new ULocale("ta") , 60 new ULocale("te_IN"), 61 new ULocale("hi"), 62 new ULocale("he"), new ULocale("ar") [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
TestUScript.java | 18 import com.ibm.icu.util.ULocale; 52 final ULocale[] testNames={ 54 new ULocale("en"), new ULocale("en_US"), 55 new ULocale("sr"), new ULocale("ta") , 56 new ULocale("te_IN"), 57 new ULocale("hi"), 58 new ULocale("he"), new ULocale("ar") [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
CollationAPITest.java | 35 import android.icu.util.ULocale; [all...] |
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
CollationAPITest.java | 34 import com.ibm.icu.util.ULocale; [all...] |