Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/
DInstantSource.java169 static InstantSource fixed(Instant fixedInstant) { in fixed() argument
170 return Clock.fixed(fixedInstant, ZoneOffset.UTC); in fixed()
DClock.java347 public static Clock fixed(Instant fixedInstant, ZoneId zone) { in fixed() argument
348 Objects.requireNonNull(fixedInstant, "fixedInstant"); in fixed()
350 return new FixedClock(fixedInstant, zone); in fixed()
642 FixedClock(Instant fixedInstant, ZoneId zone) { in FixedClock() argument
643 this.instant = fixedInstant; in FixedClock()