Searched refs:otherNanos (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/test/java/time/tck/java/time/ |
D | TCKInstant.java | 921 …public void plus_Duration(long seconds, int nanos, long otherSeconds, int otherNanos, long expecte… 922 …stant i = Instant.ofEpochSecond(seconds, nanos).plus(Duration.ofSeconds(otherSeconds, otherNanos)); 941 …public void plus_longTemporalUnit(long seconds, int nanos, long otherSeconds, int otherNanos, long… 942 …tant i = Instant.ofEpochSecond(seconds, nanos).plus(otherSeconds, SECONDS).plus(otherNanos, NANOS); 1421 …public void minus_Duration(long seconds, int nanos, long otherSeconds, int otherNanos, long expect… 1422 …tant i = Instant.ofEpochSecond(seconds, nanos).minus(Duration.ofSeconds(otherSeconds, otherNanos)); 1441 …public void minus_longTemporalUnit(long seconds, int nanos, long otherSeconds, int otherNanos, lon… 1442 …nt i = Instant.ofEpochSecond(seconds, nanos).minus(otherSeconds, SECONDS).minus(otherNanos, NANOS);
|
D | TCKDuration.java | 1116 …public void plus(long seconds, int nanos, long otherSeconds, int otherNanos, long expectedSeconds,… in plus() argument 1117 …Duration t = Duration.ofSeconds(seconds, nanos).plus(Duration.ofSeconds(otherSeconds, otherNanos)); in plus() 1735 …public void minus(long seconds, int nanos, long otherSeconds, int otherNanos, long expectedSeconds… in minus() argument 1736 …uration t = Duration.ofSeconds(seconds, nanos).minus(Duration.ofSeconds(otherSeconds, otherNanos)); in minus()
|