/libcore/benchmarks/src/benchmarks/regression/ |
D | BreakIteratorBenchmark.java | 26 …LIPSUM(Locale.US, "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi mollis consequat… 27 …LONGPARA(Locale.US, "During dinner, Mr. Bennet scarcely spoke at all; but when the servants were w… 31 TABS(Locale.US, "one\t\t\t\t\t\t\t\t\t\t\t\t\t\ttwo\n"), 32 ACCENT(Locale.US, "e\u0301\u00e9\nwhich is:\n\"e\\u0301\\u00e9\""), 33 EMOJI(Locale.US, ">>\ud83d\ude01<<\nwhich is:\n\">>\\ud83d\\ude01<<\""), 34 SPACES(Locale.US, " leading spaces and trailing ones too "), 35 EMPTY(Locale.US, ""), 36 NEWLINE(Locale.US, "\\n:\n"),
|
D | ExpensiveObjectsBenchmark.java | 57 Collator.getInstance(Locale.US); in timeNewCollator() 62 Collator c = Collator.getInstance(Locale.US); in timeClonedCollator() 70 new DateFormatSymbols(Locale.US); in timeNewDateFormatSymbols() 75 DateFormatSymbols dfs = new DateFormatSymbols(Locale.US); in timeClonedDateFormatSymbols() 83 new DecimalFormatSymbols(Locale.US); in timeNewDecimalFormatSymbols() 88 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); in timeClonedDecimalFormatSymbols() 96 NumberFormat.getInstance(Locale.US); in timeNewNumberFormat() 101 NumberFormat nf = NumberFormat.getInstance(Locale.US); in timeClonedNumberFormat() 108 NumberFormat nf = NumberFormat.getInstance(Locale.US); in timeNumberFormatTrivialFormatLong() 121 NumberFormat nf = NumberFormat.getInstance(Locale.US); in timeNumberFormatTrivialFormatDouble()
|
D | SchemePrefixBenchmark.java | 42 return spec.substring(0, colon).toLowerCase(Locale.US); in JAVA() 62 return matcher.group(1).toLowerCase(Locale.US); in REGEX()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | OldFormatterTest.java | 63 fLoc.format(Locale.US, "%f", val); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 69 fLoc.format(Locale.US, "%f", val); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 73 fLoc = new Formatter(Locale.US); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 74 fNoL = new Formatter(Locale.US); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 75 fLoc.format(Locale.US, "%f", val); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 81 fLoc.format(Locale.US, "%tA %tB %td %tT", cal, cal, cal, cal); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 87 fLoc.format(Locale.US, "%tA %tB %td %tT", cal, cal, cal, cal); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 91 fLoc = new Formatter(Locale.US); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 92 fNoL = new Formatter(Locale.US); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() 93 fLoc.format(Locale.US, "%tA %tB %td %tT", cal, cal, cal, cal); in test_formatLjava_util_LocaleLjava_lang_StringLjava_lang_Object() [all …]
|
D | OldTimeZoneTest.java | 84 Locale.setDefault(Locale.US); in test_getDisplayName() 93 assertEquals("Pacific Standard Time", tz.getDisplayName(Locale.US)); in test_getDisplayNameLjava_util_Locale() 98 Locale.setDefault(Locale.US); in test_getDisplayNameZI() 107 assertEquals("Pacific Daylight Time", tz.getDisplayName(true, TimeZone.LONG, Locale.US)); in test_getDisplayNameZILjava_util_Locale() 114 assertEquals("PDT", tz.getDisplayName(true, TimeZone.SHORT, Locale.US)); in test_getDisplayNameZILjava_util_Locale() 115 assertEquals("PST", tz.getDisplayName(false, TimeZone.SHORT, Locale.US)); in test_getDisplayNameZILjava_util_Locale()
|
D | FormatterTest.java | 76 assertEquals("JAKOB ARJOUNI", String.format(Locale.US, "%S", "jakob arjouni")); in test_uppercaseConversions() 114 assertEquals("null", String.format(Locale.US, "%s", (String) null)); in test_formatNull() 115 assertEquals("null", String.format(Locale.US, "%d", (Integer) null)); in test_formatNull() 117 assertEquals("%", String.format(Locale.US, "%%")); in test_formatNull() 187 assertEquals(expected, String.format(Locale.US, "%t" + pattern, c)); in checkFormat() 188 assertEquals(expected, String.format(Locale.US, "%T" + pattern, c)); in checkFormat()
|
D | TimeZoneTest.java | 55 assertEquals("GMT+00:01", tz0001.getDisplayName(false, TimeZone.SHORT, Locale.US)); in testCustomTimeZoneDisplayNames() 56 assertEquals("GMT+01:30", tz0130.getDisplayName(false, TimeZone.SHORT, Locale.US)); in testCustomTimeZoneDisplayNames() 57 assertEquals("GMT-01:30", tzMinus0130.getDisplayName(false, TimeZone.SHORT, Locale.US)); in testCustomTimeZoneDisplayNames() 83 Locale.setDefault(Locale.US); in testPreHistoricInDaylightTime_old() 249 checkDisplayNames(Locale.US); in testDisplayNames() 324 assertEquals("Apia Daylight Time", tz.getDisplayName(true, TimeZone.LONG, Locale.US)); in testApia() 325 assertEquals("Apia Standard Time", tz.getDisplayName(false, TimeZone.LONG, Locale.US)); in testApia() 326 assertEquals("GMT+14:00", tz.getDisplayName(true, TimeZone.SHORT, Locale.US)); in testApia() 327 assertEquals("GMT+13:00", tz.getDisplayName(false, TimeZone.SHORT, Locale.US)); in testApia()
|
D | CurrencyTest.java | 42 assertEquals("DEM", currency.getSymbol(Locale.US)); in test_getSymbol_locale() 52 Locales locales = Locales.getAndSetDefaultForTest(Locale.US, Locale.GERMANY, Locale.FRANCE); in test_getSymbol_noLocaleArgument() 84 assertEquals("Swiss Franc", currency.getDisplayName(Locale.US)); in test_getDisplayName_locale_chf() 93 assertEquals("German Mark", currency.getDisplayName(Locale.US)); in test_getDisplayName_locale_dem() 114 Locales locales = Locales.getAndSetDefaultForTest(Locale.US, Locale.GERMANY, Locale.FRANCE); in test_getDisplayName_noLocaleArgument()
|
D | LocaleTest.java | 126 Locale.forLanguageTag("zh-Hant-CN").getDisplayName(Locale.US)); in test_getDisplayName_withScriptsAndVariants() 129 Locale.forLanguageTag("zh-Hant-VARIANT").getDisplayName(Locale.US)); in test_getDisplayName_withScriptsAndVariants() 132 Locale.forLanguageTag("zh-CN-VARIANT").getDisplayName(Locale.US)); in test_getDisplayName_withScriptsAndVariants() 135 Locale.forLanguageTag("zh-Hant-CN-VARIANT").getDisplayName(Locale.US)); in test_getDisplayName_withScriptsAndVariants() 163 assertEquals("Hong Kong", new Locale("", "HK").getDisplayCountry(Locale.US)); in test_getDisplayCountry_8870289() 164 assertEquals("Palestine", new Locale("", "PS").getDisplayCountry(Locale.US)); in test_getDisplayCountry_8870289() 166 assertEquals("Cocos (Keeling) Islands", new Locale("", "CC").getDisplayCountry(Locale.US)); in test_getDisplayCountry_8870289() 167 …sertEquals("Falkland Islands (Islas Malvinas)", new Locale("", "FK").getDisplayCountry(Locale.US)); in test_getDisplayCountry_8870289() 168 assertEquals("Myanmar (Burma)", new Locale("", "MM").getDisplayCountry(Locale.US)); in test_getDisplayCountry_8870289() 169 assertEquals("Taiwan", new Locale("", "TW").getDisplayCountry(Locale.US)); in test_getDisplayCountry_8870289() [all …]
|
/libcore/luni/src/test/java/libcore/java/text/ |
D | BreakIteratorTest.java | 29 iterator = BreakIterator.getCharacterInstance(Locale.US); in setUp() 39 if (l.equals(Locale.US)) { in testGetAvailableLocales() 44 assertTrue("At least locale " + Locale.US + " must be presented", found); in testGetAvailableLocales() 58 BreakIterator it = BreakIterator.getWordInstance(Locale.US); in testStress() 73 BreakIterator it = BreakIterator.getWordInstance(Locale.US); in testWordBoundaries() 106 BreakIterator it = BreakIterator.getCharacterInstance(Locale.US); in testIsBoundary() 130 BreakIterator it = BreakIterator.getCharacterInstance(Locale.US); in testFollowing() 154 BreakIterator it = BreakIterator.getCharacterInstance(Locale.US); in testPreceding()
|
D | DateFormatSymbolsTest.java | 60 Locale.setDefault(Locale.US); in testSerialization() 100 … String[][] originalZoneStrings = DateFormatSymbols.getInstance(Locale.US).getZoneStrings(); in test_getZoneStrings_cloning() 103 … String[][] currentZoneStrings = DateFormatSymbols.getInstance(Locale.US).getZoneStrings(); in test_getZoneStrings_cloning() 109 … String[][] originalZoneStrings = DateFormatSymbols.getInstance(Locale.US).getZoneStrings(); in test_getZoneStrings_cloning() 112 … String[][] currentZoneStrings = DateFormatSymbols.getInstance(Locale.US).getZoneStrings(); in test_getZoneStrings_cloning() 118 assertUtc(Locale.US); in test_getZoneStrings_UTC() 145 String[][] array = DateFormatSymbols.getInstance(Locale.US).getZoneStrings(); in test_getZoneStrings_no_nulls() 160 String[][] array = DateFormatSymbols.getInstance(Locale.US).getZoneStrings(); in test_getZoneStrings_Apia()
|
D | DecimalFormatTest.java | 43 DecimalFormat df = (DecimalFormat) DecimalFormat.getInstance(Locale.US); in test_setMaximumFractionDigitsAffectsRoundingMode() 53 NumberFormat numberFormat = NumberFormat.getNumberInstance(Locale.US); in test_setMaximumIntegerDigits() 84 Locale.US, "9,990,000,000,000,000,000,000,000,000,000,000"); in testBigDecimalBug1897917() 94 Locale.US, "1,234,567,890,123,450"); in testBigDecimalTestBigIntWithMultiplier() 96 Locale.US, "123,456,789,012,345,678,900"); in testBigDecimalTestBigIntWithMultiplier() 98 Locale.US, "987,654,321,098,765,432,109,876,543,210"); in testBigDecimalTestBigIntWithMultiplier() 101 Locale.US, "-1,234,567,890,123,450"); in testBigDecimalTestBigIntWithMultiplier() 103 Locale.US, "-123,456,789,012,345,678,900"); in testBigDecimalTestBigIntWithMultiplier() 105 Locale.US, "-987,654,321,098,765,432,109,876,543,210"); in testBigDecimalTestBigIntWithMultiplier() 198 DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(Locale.US); in testBug9087737() [all …]
|
D | NumberFormatTest.java | 42 NumberFormat nf = NumberFormat.getNumberInstance(Locale.US); in test_custom_Number_gets_longValue() 91 NumberFormat nf = NumberFormat.getPercentInstance(Locale.US); in test_10333() 102 NumberFormat nf = NumberFormat.getPercentInstance(Locale.US); in testPercentageRounding() 118 NumberFormat nf = NumberFormat.getNumberInstance(Locale.US); in test_62269() 157 NumberFormat nf = NumberFormat.getCurrencyInstance(Locale.US); in test_issue79925() 181 NumberFormat nf = NumberFormat.getCurrencyInstance(Locale.US); in test_customCurrencySymbol() 211 NumberFormat nf = NumberFormat.getCurrencyInstance(Locale.US); in test_setCurrency() 226 nf = NumberFormat.getCurrencyInstance(Locale.US); in test_setCurrency() 258 NumberFormat format = NumberFormat.getCurrencyInstance(Locale.US); in test_setCurrency_leavesFractionDigitsUntouched()
|
D | OldNumberFormatTest.java | 32 DecimalFormat format = (DecimalFormat) NumberFormat.getIntegerInstance(Locale.US); in test_getIntegerInstanceLjava_util_Locale() 213 NumberFormat nf1 = NumberFormat.getInstance(Locale.US); in test_formatLdouble() 240 NumberFormat nf1 = NumberFormat.getInstance(Locale.US); in test_formatLlong() 278 if (l[i].equals(Locale.US)) in test_getAvailableLocales() 286 Locale.setDefault(Locale.US); in test_getCurrencyInstance() 308 Locale usLocale = Locale.US; in test_getCurrencyInstanceLjava_util_Locale() 334 Locale.setDefault(Locale.US); in test_getInstance() 354 Locale.setDefault(Locale.US); in test_getInstanceLjava_util_Locale() 372 Locale.setDefault(Locale.US); in test_getNumberInstance() 391 Locale.setDefault(Locale.US); in test_getNumberInstanceLjava_util_Locale() [all …]
|
D | OldDateFormatTest.java | 92 DateFormat.SHORT, DateFormat.SHORT, Locale.US); in test_formatLjava_util_Date() 95 SimpleDateFormat sdf = new SimpleDateFormat("M/d/yy h:mm a", Locale.US); in test_formatLjava_util_Date() 112 DateFormat.SHORT, DateFormat.SHORT, Locale.US); in test_formatLjava_lang_ObjectLjava_lang_StringBufferLjava_text_FieldPosition() 117 SimpleDateFormat sdf = new SimpleDateFormat("M/d/yy h:mm a", Locale.US); in test_formatLjava_lang_ObjectLjava_lang_StringBufferLjava_text_FieldPosition() 213 … DateFormat format = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, Locale.US); in test_parseLString() 256 format = DateFormat.getDateInstance(DateFormat.DEFAULT, Locale.US); in test_parseLString() 284 format = DateFormat.getDateInstance(DateFormat.LONG, Locale.US); in test_parseLString() 298 format = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.US); in test_parseLString() 312 format = DateFormat.getTimeInstance(DateFormat.DEFAULT, Locale.US); in test_parseLString() 331 format = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.SHORT, Locale.US); in test_parseLString() [all …]
|
D | SimpleDateFormatTest.java | 57 Locale.setDefault(Locale.US); in setUp() 72 DateFormat.SHORT, DateFormat.SHORT, Locale.US); in testDefaultConstructor_localeUS() 211 SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss yyyy", Locale.US); in test2038() 276 assertCannotParse(Locale.US, fmt, date); in testParsingUncommonTimeZoneAbbreviations() 291 Locale cetAmbiguousLocale = Locale.US; in testFormattingUncommonTimeZoneAbbreviations() 360 SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm zzzz", Locale.US); in testDstZoneNameWithNonDstTimestamp() 368 SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm zzzz", Locale.US); in testNonDstZoneNameWithDstTimestamp() 377 SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm zzzz", Locale.US); in testDstZoneWithNonDstTimestampForNonHourDstZone() 385 SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm zzzz", Locale.US); in testNonDstZoneWithDstTimestampForNonHourDstZone() 403 new SimpleDateFormat("z", Locale.US).parse("UTC"); in testParseTimezoneOnly() [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | FormatterTest.java | 737 Formatter formatter = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_ArgIndex() 747 formatter = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_ArgIndex() 755 formatter = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_ArgIndex() 763 Formatter f = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_ArgIndex() 788 formatter = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_ArgIndex() 796 formatter = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_ArgIndex() 813 formatter = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_ArgIndex() 821 formatter = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_ArgIndex() 834 Formatter f = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_Width() 838 f = new Formatter(Locale.US); in test_formatLjava_lang_String$Ljava_lang_Object_Width() [all …]
|
D | CalendarTest.java | 481 Locale.US, Locale.UK, Locale.TAIWAN, Locale.PRC, Locale.KOREA, 642 if (Locale.US.equals(l)) { in test_getAvailableLocales() 656 Calendar us_calendar = Calendar.getInstance(Locale.US); in test_getInstance() 665 .getTimeZone("GMT"), Locale.US); in test_getInstance() 669 .getTimeZone("EST"), Locale.US); in test_getInstance() 863 cal.getDisplayName(-1, Calendar.SHORT, Locale.US); in test_getDisplayNameIILjava_util_Locale() 869 cal.getDisplayName(Calendar.FIELD_COUNT, Calendar.LONG, Locale.US); in test_getDisplayNameIILjava_util_Locale() 875 cal.getDisplayName(Calendar.MONTH, -1, Locale.US); in test_getDisplayNameIILjava_util_Locale() 881 cal.getDisplayName(Calendar.MONTH, 3, Locale.US); in test_getDisplayNameIILjava_util_Locale() 906 cal.getDisplayName(Calendar.MONTH, Calendar.SHORT, Locale.US); in test_getDisplayNameIILjava_util_Locale() [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | BreakIteratorTest.java | 38 iterator = BreakIterator.getCharacterInstance(Locale.US); in setUp() 46 BreakIterator newOne = BreakIterator.getCharacterInstance(Locale.US); in testCache() 181 BreakIterator it = BreakIterator.getCharacterInstance(Locale.US); in testGetCharacterInstanceLocale() 198 BreakIterator it = BreakIterator.getLineInstance(Locale.US); in testGetLineInstanceLocale() 215 BreakIterator it = BreakIterator.getSentenceInstance(Locale.US); in testGetSentenceInstanceLocale() 237 BreakIterator it = BreakIterator.getWordInstance(Locale.US); in testGetWordInstanceLocale() 271 BreakIterator bi = BreakIterator.getWordInstance(Locale.US); in test_next()
|
D | DecimalFormatTest.java | 63 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US); in test_parse_bigDecimal() 95 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() 102 form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() 116 form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() 142 form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() 151 form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() 159 form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() 177 form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() 189 form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() 201 form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() [all …]
|
/libcore/luni/src/main/java/libcore/net/http/ |
D | HttpDate.java | 39 DateFormat rfc1123 = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss zzz", Locale.US); 80 return new SimpleDateFormat(formatString, Locale.US).parse(value); in parse()
|
/libcore/ojluni/src/test/java/time/tck/java/time/format/ |
D | TCKLocalizedPrinterParser.java | 121 {LocalDate.of(2012, 6, 30), FormatStyle.SHORT, DateFormat.SHORT, Locale.US}, in data_date() 126 {LocalDate.of(2012, 6, 30), FormatStyle.MEDIUM, DateFormat.MEDIUM, Locale.US}, in data_date() 131 {LocalDate.of(2012, 6, 30), FormatStyle.LONG, DateFormat.LONG, Locale.US}, in data_date() 136 {LocalDate.of(2012, 6, 30), FormatStyle.FULL, DateFormat.FULL, Locale.US}, in data_date() 173 {LocalTime.of(11, 30), FormatStyle.SHORT, DateFormat.SHORT, Locale.US}, in data_time() 178 {LocalTime.of(11, 30), FormatStyle.MEDIUM, DateFormat.MEDIUM, Locale.US}, in data_time()
|
/libcore/ojluni/src/test/java/time/test/java/time/temporal/ |
D | TestChronoField.java | 99 Locale.US, in data_localeList() 124 Locale locale = Locale.US; in test_IsoFields_week_based_year() 137 Locale locale = Locale.US; in test_WeekFields_week_based_year()
|
/libcore/ojluni/src/test/java/time/test/java/time/format/ |
D | TestDateTimeFormatterBuilder.java | 908 …{FormatStyle.FULL, FormatStyle.FULL, IsoChronology.INSTANCE, Locale.US, "EEEE, MMMM d, y 'at' h:mm… in localizedDateTimePatterns() 909 …{FormatStyle.LONG, FormatStyle.LONG, IsoChronology.INSTANCE, Locale.US, "MMMM d, y 'at' h:mm:ss a … in localizedDateTimePatterns() 910 …{FormatStyle.MEDIUM, FormatStyle.MEDIUM, IsoChronology.INSTANCE, Locale.US, "MMM d, y, h:mm:ss a"}, in localizedDateTimePatterns() 911 … {FormatStyle.SHORT, FormatStyle.SHORT, IsoChronology.INSTANCE, Locale.US, "M/d/yy, h:mm a"}, in localizedDateTimePatterns() 912 {FormatStyle.FULL, null, IsoChronology.INSTANCE, Locale.US, "EEEE, MMMM d, y"}, in localizedDateTimePatterns() 913 {FormatStyle.LONG, null, IsoChronology.INSTANCE, Locale.US, "MMMM d, y"}, in localizedDateTimePatterns() 914 {FormatStyle.MEDIUM, null, IsoChronology.INSTANCE, Locale.US, "MMM d, y"}, in localizedDateTimePatterns() 915 {FormatStyle.SHORT, null, IsoChronology.INSTANCE, Locale.US, "M/d/yy"}, in localizedDateTimePatterns() 916 {null, FormatStyle.FULL, IsoChronology.INSTANCE, Locale.US, "h:mm:ss a zzzz"}, in localizedDateTimePatterns() 917 {null, FormatStyle.LONG, IsoChronology.INSTANCE, Locale.US, "h:mm:ss a z"}, in localizedDateTimePatterns() [all …]
|
/libcore/luni/src/test/java/libcore/libcore/icu/ |
D | DateIntervalFormatTest.java | 41 Calendar c = Calendar.getInstance(tz, ULocale.US); in test_formatDateInterval() 176 ULocale l = ULocale.US; in test8862241() 190 ULocale l = ULocale.US; in test10089890() 212 ULocale l = ULocale.US; in test10318326() 239 ULocale l = ULocale.US; in test10560853_when_time_not_displayed() 263 ULocale l = ULocale.US; in test10560853_for_single_day_events() 275 ULocale l = ULocale.US; in test_single_day_events_later_than_epoch() 293 ULocale l = ULocale.US; in test_single_day_events_not_in_UTC() 314 ULocale l = ULocale.US; in test10209343_when_not_this_year() 337 ULocale l = ULocale.US; in test10209343_when_this_year() [all …]
|