Home | History | Annotate | Download | only in format

Lines Matching refs:som

469             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) {
540 totalNanos = Math.addExact(totalNanos, Math.multiplyExact(som, 1_000_000_000L));
549 if (resolverStyle == ResolverStyle.SMART && hod == 24 && mohVal == 0 && som == 0 && nosVal == 0) {
553 int somVal = SECOND_OF_MINUTE.checkValidIntValue(som);