Home
last modified time | relevance | path

Searched refs:appendLocalized (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/test/java/time/tck/java/time/format/
DTCKLocalizedPrinterParser.java113 builder.appendLocalized(null, null); in test_parse_negativePosition()
149 DateTimeFormatter f = builder.appendLocalized(dateStyle, null).toFormatter(locale); in test_date_print()
161 DateTimeFormatter f = builder.appendLocalized(dateStyle, null).toFormatter(locale); in test_date_parse()
202 DateTimeFormatter f = builder.appendLocalized(null, timeStyle).toFormatter(locale); in test_time_print()
214 DateTimeFormatter f = builder.appendLocalized(null, timeStyle).toFormatter(locale); in test_time_parse()
DTCKFormatStyle.java112 …DateTimeFormatter formatter = builder.appendLocalized(style, style).appendLiteral(" ").appendZoneO… in test_formatStyle()
/libcore/ojluni/src/main/java/java/time/format/
DDateTimeFormatter.java588 return new DateTimeFormatterBuilder().appendLocalized(dateStyle, null) in ofLocalizedDate()
616 return new DateTimeFormatterBuilder().appendLocalized(null, timeStyle) in ofLocalizedTime()
644 return new DateTimeFormatterBuilder().appendLocalized(dateTimeStyle, dateTimeStyle) in ofLocalizedDateTime()
674 return new DateTimeFormatterBuilder().appendLocalized(dateStyle, timeStyle) in ofLocalizedDateTime()
DDateTimeFormatterBuilder.java1276 public DateTimeFormatterBuilder appendLocalized(FormatStyle dateStyle, FormatStyle timeStyle) { in appendLocalized() method in DateTimeFormatterBuilder