Searched refs:withMinute (Results 1 – 13 of 13) sorted by relevance
170 LocalDateTime t = TEST_2007_07_15_12_30_40_987654321.withMinute(30); in test_withMinute_noChange()176 LocalDateTime t = TEST_2007_07_15_12_30_40_987654321.with(LocalTime.of(0, 1)).withMinute(0); in test_withMinute_toMidnight()182 … LocalDateTime t = TEST_2007_07_15_12_30_40_987654321.with(LocalTime.of(12, 1)).withMinute(0); in test_withMinute_toMidday()
182 OffsetDateTime test = base.withMinute(30); in test_withMinute_noChange()
759 public OffsetTime withMinute(int minute) { in withMinute() method in OffsetTime760 return with(time.withMinute(minute), offset); in withMinute()
1069 public OffsetDateTime withMinute(int minute) { in withMinute() method in OffsetDateTime1070 return with(dateTime.withMinute(minute), offset); in withMinute()
840 case MINUTE_OF_HOUR: return withMinute((int) newValue); in with()880 public LocalTime withMinute(int minute) { in withMinute() method in LocalTime
1442 public ZonedDateTime withMinute(int minute) { in withMinute() method in ZonedDateTime1443 return resolveLocal(dateTime.withMinute(minute)); in withMinute()
1060 public LocalDateTime withMinute(int minute) { in withMinute() method in LocalDateTime1061 LocalTime newTime = time.withMinute(minute); in withMinute()
1157 t = t.withMinute(i); in test_withMinute_normal()1164 LocalTime t = TEST_12_30_40_987654321.withMinute(30); in test_withMinute_noChange_equal()1170 LocalTime t = LocalTime.of(0, 1).withMinute(0); in test_withMinute_toMidnight_equal()1176 LocalTime t = LocalTime.of(12, 1).withMinute(0); in test_withMinute_toMidday_equals()1182 TEST_12_30_40_987654321.withMinute(-1); in test_withMinute_minuteTooLow()1187 TEST_12_30_40_987654321.withMinute(60); in test_withMinute_minuteTooHigh()
1517 ZonedDateTime test = base.withMinute(15);1518 …assertEquals(test, ZonedDateTime.of(TEST_LOCAL_2008_06_30_11_30_59_500.withMinute(15), ZONE_0100));1524 ZonedDateTime test = base.withMinute(30);2050 …ZonedDateTime before = TEST_PARIS_GAP_2008_03_30_02_30.withHour(0).withMinute(0).atZone(ZONE_PARIS…2051 …ZonedDateTime after = TEST_PARIS_GAP_2008_03_30_02_30.withHour(0).withMinute(0).plusDays(1).atZone…2059 …ZonedDateTime before = TEST_PARIS_OVERLAP_2008_10_26_02_30.withHour(0).withMinute(0).atZone(ZONE_P…2060 …ZonedDateTime after = TEST_PARIS_OVERLAP_2008_10_26_02_30.withHour(0).withMinute(0).plusDays(1).at…
823 OffsetTime test = base.withMinute(15);830 OffsetTime test = base.withMinute(30);
1298 t = t.withMinute(i);1305 TEST_2007_07_15_12_30_40_987654321.withMinute(-1);1310 TEST_2007_07_15_12_30_40_987654321.withMinute(60);
882 OffsetDateTime test = base.withMinute(15);
257 public java.time.OffsetDateTime withMinute(int minute) { in withMinute() method in OffsetDateTime