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

/libcore/ojluni/src/test/java/time/tck/java/time/format/
H A DTCKDateTimeFormatter.java282 OffsetTime ot = OffsetTime.of(LocalTime.of(11, 30), OFFSET_PONE);
293 {null, null, ot, ":11:+01:00::"},
303 {IsoChronology.INSTANCE, null, ot, ":11:+01:00::ISO"},
313 {null, ZONE_PARIS, ot, ":11:+01:00:Europe/Paris:"},
323 {null, OFFSET_PTHREE, ot, null}, // offset and zone clash
333 {ThaiBuddhistChronology.INSTANCE, null, ot, ":11:+01:00::ThaiBuddhist"},
343 {ThaiBuddhistChronology.INSTANCE, ZONE_PARIS, ot, ":11:+01:00:Europe/Paris:ThaiBuddhist"},
/libcore/ojluni/src/test/java/time/tck/java/time/
H A DTCKZonedDateTime.java1250 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);
[all...]
H A DTCKOffsetTime.java1221 private Instant convertInstant(OffsetTime ot) { argument
1222 return DATE.atTime(ot.toLocalTime()).toInstant(ot.getOffset());

Completed in 80 milliseconds