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.java331 for (TextStyle textStyle : TextStyle.values()) { in createStore()
332 if (textStyle.isStandalone()) { in createStore()
337 "gregory", Calendar.ERA, textStyle.toCalendarStyle(), locale); in createStore()
344 styleMap.put(textStyle, map); in createStore()
352 for (TextStyle textStyle : TextStyle.values()) { in createStore()
354 "gregory", Calendar.MONTH, textStyle.toCalendarStyle(), locale); in createStore()
367 … "gregory", Calendar.MONTH, month, textStyle.toCalendarStyle(), locale); in createStore()
375 styleMap.put(textStyle, map); in createStore()
382 for (TextStyle textStyle : TextStyle.values()) { in createStore()
384 "gregory", Calendar.DAY_OF_WEEK, textStyle.toCalendarStyle(), locale); in createStore()
[all …]
DDateTimeFormatterBuilder.java734 public DateTimeFormatterBuilder appendText(TemporalField field, TextStyle textStyle) { in appendText() argument
736 Objects.requireNonNull(textStyle, "textStyle"); in appendText()
737 appendInternal(new TextPrinterParser(field, textStyle, DateTimeTextProvider.getInstance())); in appendText()
1159 public DateTimeFormatterBuilder appendZoneText(TextStyle textStyle) { in appendZoneText() argument
1160 appendInternal(new ZoneTextPrinterParser(textStyle, null)); in appendZoneText()
1200 public DateTimeFormatterBuilder appendZoneText(TextStyle textStyle, in appendZoneText() argument
1203 appendInternal(new ZoneTextPrinterParser(textStyle, preferredZones)); in appendZoneText()
1241 public DateTimeFormatterBuilder appendChronologyText(TextStyle textStyle) { in appendChronologyText() argument
1242 Objects.requireNonNull(textStyle, "textStyle"); in appendChronologyText()
1243 appendInternal(new ChronoPrinterParser(textStyle)); in appendChronologyText()
[all …]
/libcore/benchmarks/src/benchmarks/regression/
DR.java2374 public static final int textStyle = 0; field in R