Searched refs:textStyle (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/main/java/java/time/format/ |
D | DateTimeTextProvider.java | 332 for (TextStyle textStyle : TextStyle.values()) { in createStore() 333 if (textStyle.isStandalone()) { in createStore() 338 "gregory", Calendar.ERA, textStyle.toCalendarStyle(), locale); in createStore() 345 styleMap.put(textStyle, map); in createStore() 353 for (TextStyle textStyle : TextStyle.values()) { in createStore() 355 "gregory", Calendar.MONTH, textStyle.toCalendarStyle(), locale); in createStore() 368 … "gregory", Calendar.MONTH, month, textStyle.toCalendarStyle(), locale); in createStore() 376 styleMap.put(textStyle, map); in createStore() 383 for (TextStyle textStyle : TextStyle.values()) { in createStore() 385 "gregory", Calendar.DAY_OF_WEEK, textStyle.toCalendarStyle(), locale); in createStore() [all …]
|
D | DateTimeFormatterBuilder.java | 743 public DateTimeFormatterBuilder appendText(TemporalField field, TextStyle textStyle) { in appendText() argument 745 Objects.requireNonNull(textStyle, "textStyle"); in appendText() 746 appendInternal(new TextPrinterParser(field, textStyle, DateTimeTextProvider.getInstance())); in appendText() 1168 public DateTimeFormatterBuilder appendZoneText(TextStyle textStyle) { in appendZoneText() argument 1169 appendInternal(new ZoneTextPrinterParser(textStyle, null)); in appendZoneText() 1209 public DateTimeFormatterBuilder appendZoneText(TextStyle textStyle, in appendZoneText() argument 1212 appendInternal(new ZoneTextPrinterParser(textStyle, preferredZones)); in appendZoneText() 1250 public DateTimeFormatterBuilder appendChronologyText(TextStyle textStyle) { in appendChronologyText() argument 1251 Objects.requireNonNull(textStyle, "textStyle"); in appendChronologyText() 1252 appendInternal(new ChronoPrinterParser(textStyle)); in appendChronologyText() [all …]
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | R.java | 2374 public static final int textStyle = 0; field in R
|