Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/time/tck/java/time/
DTCKInstant.java915 …public void plus_Duration(long seconds, int nanos, long otherSeconds, int otherNanos, long expecte…
916 …Instant i = Instant.ofEpochSecond(seconds, nanos).plus(Duration.ofSeconds(otherSeconds, otherNanos…
935 …public void plus_longTemporalUnit(long seconds, int nanos, long otherSeconds, int otherNanos, long…
936 …Instant i = Instant.ofEpochSecond(seconds, nanos).plus(otherSeconds, SECONDS).plus(otherNanos, NAN…
1415 …public void minus_Duration(long seconds, int nanos, long otherSeconds, int otherNanos, long expect…
1416 …Instant i = Instant.ofEpochSecond(seconds, nanos).minus(Duration.ofSeconds(otherSeconds, otherNano…
1435 …public void minus_longTemporalUnit(long seconds, int nanos, long otherSeconds, int otherNanos, lon…
1436 …Instant i = Instant.ofEpochSecond(seconds, nanos).minus(otherSeconds, SECONDS).minus(otherNanos, N…
DTCKDuration.java1089 …public void plus(long seconds, int nanos, long otherSeconds, int otherNanos, long expectedSeconds,… in plus() argument
1090 …Duration t = Duration.ofSeconds(seconds, nanos).plus(Duration.ofSeconds(otherSeconds, otherNanos)); in plus()
1708 …public void minus(long seconds, int nanos, long otherSeconds, int otherNanos, long expectedSeconds… in minus() argument
1709 …Duration t = Duration.ofSeconds(seconds, nanos).minus(Duration.ofSeconds(otherSeconds, otherNanos)… in minus()