Home
last modified time | relevance | path

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

/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimeUtil.java174 return normalizedTimestamp(seconds, nanos); in parseTimestamp()
263 return normalizedTimestamp(milliseconds / MILLIS_PER_SECOND, in createTimestampFromMillis()
301 return normalizedTimestamp(microseconds / MICROS_PER_SECOND, in createTimestampFromMicros()
339 return normalizedTimestamp(nanoseconds / NANOS_PER_SECOND, in createTimestampFromNanos()
391 return normalizedTimestamp(start.getSeconds() + length.getSeconds(), in add()
399 return normalizedTimestamp(start.getSeconds() - length.getSeconds(), in subtract()
496 private static Timestamp normalizedTimestamp(long seconds, int nanos) { in normalizedTimestamp() method in TimeUtil