Home
last modified time | relevance | path

Searched refs:textStyle (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/time/format/
DDateTimeTextProvider.java335 for (TextStyle textStyle : TextStyle.values()) { in createStore()
336 if (textStyle.isStandalone()) { in createStore()
341 "gregory", Calendar.ERA, textStyle.toCalendarStyle(), locale); in createStore()
348 styleMap.put(textStyle, map); in createStore()
356 for (TextStyle textStyle : TextStyle.values()) { in createStore()
360 if ((textStyle.equals(TextStyle.NARROW) || in createStore()
361 textStyle.equals(TextStyle.NARROW_STANDALONE))) { in createStore()
366 month, textStyle.toCalendarStyle(), locale); in createStore()
374 "gregory", Calendar.MONTH, textStyle.toCalendarStyle(), locale); in createStore()
385 … "gregory", Calendar.MONTH, month, textStyle.toCalendarStyle(), locale); in createStore()
[all …]
DDateTimeFormatterBuilder.java764 public DateTimeFormatterBuilder appendText(TemporalField field, TextStyle textStyle) { in appendText() argument
766 Objects.requireNonNull(textStyle, "textStyle"); in appendText()
767 appendInternal(new TextPrinterParser(field, textStyle, DateTimeTextProvider.getInstance())); in appendText()
1239 public DateTimeFormatterBuilder appendZoneText(TextStyle textStyle) { in appendZoneText() argument
1240 appendInternal(new ZoneTextPrinterParser(textStyle, null, false)); in appendZoneText()
1281 public DateTimeFormatterBuilder appendZoneText(TextStyle textStyle, in appendZoneText() argument
1284 appendInternal(new ZoneTextPrinterParser(textStyle, preferredZones, false)); in appendZoneText()
1321 public DateTimeFormatterBuilder appendGenericZoneText(TextStyle textStyle) { in appendGenericZoneText() argument
1322 appendInternal(new ZoneTextPrinterParser(textStyle, null, true)); in appendGenericZoneText()
1347 public DateTimeFormatterBuilder appendGenericZoneText(TextStyle textStyle, in appendGenericZoneText() argument
[all …]
/libcore/benchmarks/src/benchmarks/regression/
DR.java2374 public static final int textStyle = 0; field in R