/libcore/ojluni/src/test/java/time/tck/java/time/ |
D | TCKZonedDateTime.java | 156 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKZonedDateTime 167 TEST_DATE_TIME_PARIS = ZonedDateTime.of(TEST_LOCAL_2008_06_30_11_30_59_500, ZONE_PARIS); in setUp() 357 …Time test = ZonedDateTime.of(LocalDate.of(2008, 6, 30), LocalTime.of(11, 30, 10, 500), ZONE_PARIS); 358 check(test, 2008, 6, 30, 11, 30, 10, 500, OFFSET_0200, ZONE_PARIS); 363 …RIS_GAP_2008_03_30_02_30.toLocalDate(), TEST_PARIS_GAP_2008_03_30_02_30.toLocalTime(), ZONE_PARIS); 364 …check(test, 2008, 3, 30, 3, 30, 0, 0, OFFSET_0200, ZONE_PARIS); // one hour later in summer offset 369 …LAP_2008_10_26_02_30.toLocalDate(), TEST_PARIS_OVERLAP_2008_10_26_02_30.toLocalTime(), ZONE_PARIS); 370 … check(test, 2008, 10, 26, 2, 30, 0, 0, OFFSET_0200, ZONE_PARIS); // same time in summer offset 375 ZonedDateTime.of((LocalDate) null, LocalTime.of(11, 30, 10, 500), ZONE_PARIS); 380 ZonedDateTime.of(LocalDate.of(2008, 6, 30), (LocalTime) null, ZONE_PARIS); [all …]
|
D | TCKOffsetDateTime.java | 153 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKOffsetDateTime 1232 assertEquals(t.atZoneSameInstant(ZONE_PARIS), 1233 ZonedDateTime.of(2008, 6, 30, 15, 30, 0, 0, ZONE_PARIS)); 1248 assertEquals(t.atZoneSimilarLocal(ZONE_PARIS), 1249 ZonedDateTime.of(2008, 6, 30, 11, 30, 0, 0, ZONE_PARIS)); 1262 assertEquals(t.atZoneSimilarLocal(ZONE_PARIS).toLocalDateTime(), t.toLocalDateTime()); 1263 assertEquals(t.atZoneSimilarLocal(ZONE_PARIS).getOffset(), OFFSET_PTWO); 1264 assertEquals(t.atZoneSimilarLocal(ZONE_PARIS).getZone(), ZONE_PARIS); 1270 assertEquals(t.atZoneSimilarLocal(ZONE_PARIS).toLocalDateTime(), t.toLocalDateTime()); 1271 assertEquals(t.atZoneSimilarLocal(ZONE_PARIS).getOffset(), OFFSET_PONE); [all …]
|
D | TCKLocalDateTime.java | 158 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKLocalDateTime 763 …{Instant.ofEpochSecond(86400 + 3600 + 120 + 4, 500), ZONE_PARIS, LocalDateTime.of(1970, 1, 2, 2, 2… 1144 …), ZonedDateTime.of(2210, 2, 2, 0, 0, 0, 0, ZONE_PARIS), ZonedDateTime.of(2012, 3, 4, 23, 5, 0, 0,… 2975 assertEquals(t.atZone(ZONE_PARIS), 2976 ZonedDateTime.of(LocalDateTime.of(2008, 6, 30, 11, 30), ZONE_PARIS)); 2995 assertEquals(t.atZone(ZONE_PARIS), 2996 … ZonedDateTime.ofStrict(LocalDateTime.of(2007, 10, 28, 2, 30), OFFSET_PTWO, ZONE_PARIS));
|
D | TCKLocalTime.java | 142 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKLocalTime 433 … {Instant.ofEpochSecond(86400 + 3600 + 120 + 4, 500), ZONE_PARIS, LocalTime.of(2, 2, 4, 500)}, in data_instantFactory() 451 LocalTime.ofInstant((Instant) null, ZONE_PARIS); in factory_ofInstant_nullInstant() local 776 …), ZonedDateTime.of(2210, 2, 2, 1, 1, 0, 0, ZONE_PARIS), ZonedDateTime.of(2210, 2, 2, 23, 5, 0, 0,… in data_adjustInto()
|
D | TCKInstant.java | 121 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKInstant 448 …ZonedDateTime.of(1970, 1, 1, 0, 0, 20, 10, ZONE_PARIS), ZonedDateTime.of(1970, 1, 1, 1, 0, 10, 200…
|
D | TCKLocalDate.java | 138 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKLocalDate 2078 …{LocalDate.of(2008, 6, 30), ZONE_PARIS, ZonedDateTime.of(LocalDateTime.of(2008, 6, 30, 0, 0), ZONE…
|
/libcore/ojluni/src/test/java/time/tck/java/time/format/ |
D | TCKDateTimeFormatter.java | 120 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKDateTimeFormatter 284 ZonedDateTime zdt = ZonedDateTime.of(LocalDateTime.of(2008, 6, 30, 11, 30), ZONE_PARIS); in data_format_withZone_withChronology() 308 {null, ZONE_PARIS, DayOfWeek.MONDAY, ":::Europe/Paris:"}, in data_format_withZone_withChronology() 309 {null, ZONE_PARIS, ym, "2008:::Europe/Paris:ISO"}, in data_format_withZone_withChronology() 310 {null, ZONE_PARIS, ld, "2008:::Europe/Paris:ISO"}, in data_format_withZone_withChronology() 311 {null, ZONE_PARIS, lt, ":11::Europe/Paris:"}, in data_format_withZone_withChronology() 312 {null, ZONE_PARIS, ldt, "2008:11::Europe/Paris:ISO"}, in data_format_withZone_withChronology() 313 {null, ZONE_PARIS, ot, ":11:+01:00:Europe/Paris:"}, in data_format_withZone_withChronology() 314 {null, ZONE_PARIS, odt, "2008:12:+02:00:Europe/Paris:ISO"}, in data_format_withZone_withChronology() 315 {null, ZONE_PARIS, zdt, "2008:11:+02:00:Europe/Paris:ISO"}, in data_format_withZone_withChronology() [all …]
|
/libcore/ojluni/src/test/java/time/tck/java/time/serial/ |
D | TCKZonedDateTimeSerialization.java | 82 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKZonedDateTimeSerialization
|
/libcore/ojluni/src/test/java/time/tck/java/time/chrono/ |
D | TCKMinguoChronology.java | 110 private static final ZoneId ZONE_PARIS = ZoneId.of("Europe/Paris"); field in TCKMinguoChronology 414 …{ZonedDateTime.of(2012, 2, 29, 2, 7, 1, 1, ZONE_PARIS), MinguoChronology.INSTANCE.date(MinguoEra.R… in data_localDateTime() 447 …{ZonedDateTime.of(2012, 2, 29, 2, 7, 1, 1, ZONE_PARIS), MinguoChronology.INSTANCE.date(MinguoEra.R… in data_zonedDateTime() 482 ZonedDateTime zonedDateTime = ZonedDateTime.of(2012, 2, 29, 2, 7, 1, 1, ZONE_PARIS); in test_Instant_zonedDateTime()
|