Searched refs:ot (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/test/java/time/tck/java/time/format/ |
D | TCKDateTimeFormatter.java | 282 OffsetTime ot = OffsetTime.of(LocalTime.of(11, 30), OFFSET_PONE); in data_format_withZone_withChronology() local 293 {null, null, ot, ":11:+01:00::"}, in data_format_withZone_withChronology() 303 {IsoChronology.INSTANCE, null, ot, ":11:+01:00::ISO"}, in data_format_withZone_withChronology() 313 {null, ZONE_PARIS, ot, ":11:+01:00:Europe/Paris:"}, in data_format_withZone_withChronology() 323 {null, OFFSET_PTHREE, ot, null}, // offset and zone clash in data_format_withZone_withChronology() 333 {ThaiBuddhistChronology.INSTANCE, null, ot, ":11:+01:00::ThaiBuddhist"}, in data_format_withZone_withChronology() 343 … {ThaiBuddhistChronology.INSTANCE, ZONE_PARIS, ot, ":11:+01:00:Europe/Paris:ThaiBuddhist"}, in data_format_withZone_withChronology()
|
/libcore/ojluni/src/test/java/time/tck/java/time/ |
D | TCKZonedDateTime.java | 1250 OffsetTime ot = OffsetTime.of(15, 50, 30, 40, OFFSET_0100); 1252 ZonedDateTime test = zdt.with(ot); 1260 OffsetTime ot = OffsetTime.of(0, 50, 30, 40, OFFSET_0130); 1262 ZonedDateTime test = zdt.with(ot); 1270 OffsetTime ot = OffsetTime.of(15, 50, 30, 40, OFFSET_0130); 1272 ZonedDateTime test = zdt.with(ot); 1280 OffsetTime ot = OffsetTime.of(2, 30, 30, 40, OFFSET_0100); // valid offset in overlap 1282 ZonedDateTime test = zdt.with(ot); 1290 OffsetTime ot = OffsetTime.of(2, 30, 30, 40, OFFSET_0200); // valid offset in overlap 1292 ZonedDateTime test = zdt.with(ot);
|
D | TCKOffsetTime.java | 1221 private Instant convertInstant(OffsetTime ot) { 1222 return DATE.atTime(ot.toLocalTime()).toInstant(ot.getOffset());
|