Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/temporal/
DChronoUnit.java271 public long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive) { in between() argument
272 return temporal1Inclusive.until(temporal2Exclusive, this); in between()
DIsoFields.java705 public long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive) { in between() argument
706 if (temporal1Inclusive.getClass() != temporal2Exclusive.getClass()) { in between()
707 return temporal1Inclusive.until(temporal2Exclusive, this); in between()
712 temporal1Inclusive.getLong(WEEK_BASED_YEAR)); in between()
714 return temporal1Inclusive.until(temporal2Exclusive, MONTHS) / 3; in between()
DTemporalUnit.java284 long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive); in between() argument