Home
last modified time | relevance | path

Searched refs:temporal2Exclusive (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/time/temporal/
DTemporalUnit.java284 long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive); in between() argument
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()
711 return Math.subtractExact(temporal2Exclusive.getLong(WEEK_BASED_YEAR), in between()
714 return temporal1Inclusive.until(temporal2Exclusive, MONTHS) / 3; in between()