Searched defs:ofEpochSecond (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/time/
H A DInstant.java226 public static final Instant MIN = Instant.ofEpochSecond(MIN_SECOND, 0);
237 public static final Instant MAX = Instant.ofEpochSecond(MAX_SECOND, 999_999_999);
297 public static Instant ofEpochSecond(long epochSecond) { method in class:Instant
310 * Instant.ofEpochSecond(3, 1);
311 * Instant.ofEpochSecond(4, -999_999_999);
312 * Instant.ofEpochSecond(2, 1000_000_001);
321 public static Instant ofEpochSecond(long epochSecond, long nanoAdjustment) { method in class:Instant
369 return Instant.ofEpochSecond(instantSecs, nanoOfSecond);
923 return ofEpochSecond(epochSec, nanoAdjustment);
1362 return Instant.ofEpochSecond(second
[all...]
H A DLocalDateTime.java207 return ofEpochSecond(now.getEpochSecond(), now.getNano(), offset);
392 return ofEpochSecond(instant.getEpochSecond(), instant.getNano(), offset);
410 public static LocalDateTime ofEpochSecond(long epochSecond, int nanoOfSecond, ZoneOffset offset) { method in class:LocalDateTime

Completed in 60 milliseconds