Searched refs:som (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/format/
H A DParsed.java469 long som = fieldValues.remove(SECOND_OF_MINUTE);
471 resolveTime(hod, moh, som, nos);
504 Long som = fieldValues.get(SECOND_OF_MINUTE);
508 if ((moh == null && (som != null || nos != null)) ||
509 (moh != null && som == null && nos != null)) {
515 long somVal = (som != null ? som : 0);
536 private void resolveTime(long hod, long moh, long som, long nos) { argument
540 totalNanos = Math.addExact(totalNanos, Math.multiplyExact(som, 1_000_000_000L));
549 if (resolverStyle == ResolverStyle.SMART && hod == 24 && mohVal == 0 && som
[all...]

Completed in 59 milliseconds