Searched refs:endDate (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DAdaptableX509CertSelector.java58 private Date endDate; field in class:AdaptableX509CertSelector
82 * @param endDate the end date of a validity period that must fall
85 void setValidityPeriod(Date startDate, Date endDate) { argument
87 this.endDate = endDate;
188 if (endDate != null) {
190 xcert.checkValidity(endDate);
254 if (endDate != null) {
255 copy.endDate = (Date)endDate
[all...]
/libcore/ojluni/src/main/java/java/time/chrono/
H A DChronoLocalDateTimeImpl.java389 ChronoLocalDate endDate = end.toLocalDate();
391 endDate = endDate.minus(1, ChronoUnit.DAYS);
393 return date.until(endDate, unit);
H A DMinguoDate.java426 public ChronoPeriod until(ChronoLocalDate endDate) { argument
427 Period period = isoDate.until(endDate);
H A DThaiBuddhistDate.java426 public ChronoPeriod until(ChronoLocalDate endDate) { argument
427 Period period = isoDate.until(endDate);
H A DHijrahDate.java587 public ChronoPeriod until(ChronoLocalDate endDate) { argument
589 HijrahDate end = getChronology().date(endDate);
H A DJapaneseDate.java667 public ChronoPeriod until(ChronoLocalDate endDate) { argument
668 Period period = isoDate.until(endDate);
/libcore/ojluni/src/main/java/java/time/
H A DLocalDateTime.java1723 LocalDate endDate = end.date;
1724 if (endDate.isAfter(date) && end.time.isBefore(time)) {
1725 endDate = endDate.minusDays(1);
1726 } else if (endDate.isBefore(date) && end.time.isAfter(time)) {
1727 endDate = endDate.plusDays(1);
1729 return date.until(endDate, unit);
/libcore/ojluni/src/test/java/time/tck/java/time/chrono/
H A DCopticDate.java309 public Period until(ChronoLocalDate endDate) { argument
311 CopticDate end = getChronology().date(endDate);
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DX509CertificateTest.java184 final Date endDate = sdf.parse(line.substring(index + 1));
186 assertTrue(startDate.before(endDate));
187 assertTrue(endDate.after(startDate));
189 return new Date[] { startDate, endDate };
/libcore/ojluni/src/test/java/time/tck/java/time/format/
H A DTCKDateTimeFormatters.java1110 private ZonedDateTime endDate = date.withYear(2005).withMonth(1).withDayOfMonth(2);
1115 return !date.isAfter(endDate);

Completed in 275 milliseconds