Home
last modified time | relevance | path

Searched refs:appendOffset (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/test/java/time/tck/java/time/format/
DTCKDateTimeFormatterBuilder.java382 builder.appendOffset(pattern, "Z"); in test_appendOffset_format()
390 builder.appendOffset(pattern, "Z"); in test_appendOffset_parse()
415 builder.appendOffset(pattern, "Z"); in test_appendOffset_badPattern()
420 builder.appendOffset("+HH:MM", null); in test_appendOffset_3arg_nullText()
425 builder.appendOffset(null, "Z"); in test_appendOffset_3arg_nullPattern()
DTCKOffsetPrinterParser.java236 builder.appendOffset(offsetPattern, noOffset); in test_print()
/libcore/ojluni/src/test/java/time/test/java/time/format/
DAbstractTestPrinterParser.java141 …return builder.appendOffset(pattern, noOffsetText).toFormatter(locale).withDecimalStyle(decimalSty… in getFormatter()
DTestDateTimeFormatterBuilder.java462 builder.appendOffset(pattern, "Z"); in test_appendOffset_format()
470 builder.appendOffset(pattern, "Z"); in test_appendOffset_parse()
496 builder.appendOffset(pattern, "Z"); in test_appendOffset_badPattern()
501 builder.appendOffset("+HH:MM", null); in test_appendOffset_3arg_nullText()
506 builder.appendOffset(null, "Z"); in test_appendOffset_3arg_nullPattern()
/libcore/ojluni/src/main/java/java/time/format/
DDateTimeFormatter.java1169 .appendOffset("+HHMMss", "Z")
1263 .appendOffset("+HHMM", "GMT") // should handle UT/Z/EST/EDT/CST/CDT/MST/MDT/PST/MDT
DDateTimeFormatterBuilder.java921 public DateTimeFormatterBuilder appendOffset(String pattern, String noOffsetText) { in appendOffset() method in DateTimeFormatterBuilder
1626 appendOffset("+HHMM", "+0000"); in parsePattern()
1630 appendOffset("+HH:MM:ss","Z"); in parsePattern()
1646 appendOffset(OffsetIdPrinterParser.PATTERNS[count + (count == 1 ? 0 : 1)], "Z"); in parsePattern()
1652appendOffset(OffsetIdPrinterParser.PATTERNS[count + (count == 1 ? 0 : 1)], zero); in parsePattern()