Home
last modified time | relevance | path

Searched refs:ot (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/time/tck/java/time/format/
DTCKDateTimeFormatter.java282 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/
DTCKZonedDateTime.java1245 OffsetTime ot = OffsetTime.of(15, 50, 30, 40, OFFSET_0100);
1247 ZonedDateTime test = zdt.with(ot);
1255 OffsetTime ot = OffsetTime.of(0, 50, 30, 40, OFFSET_0130);
1257 ZonedDateTime test = zdt.with(ot);
1265 OffsetTime ot = OffsetTime.of(15, 50, 30, 40, OFFSET_0130);
1267 ZonedDateTime test = zdt.with(ot);
1275 OffsetTime ot = OffsetTime.of(2, 30, 30, 40, OFFSET_0100); // valid offset in overlap
1277 ZonedDateTime test = zdt.with(ot);
1285 OffsetTime ot = OffsetTime.of(2, 30, 30, 40, OFFSET_0200); // valid offset in overlap
1287 ZonedDateTime test = zdt.with(ot);
DTCKOffsetTime.java1236 private Instant convertInstant(OffsetTime ot) {
1237 return DATE.atTime(ot.toLocalTime()).toInstant(ot.getOffset());