Searched refs:moh (Results 1 – 1 of 1) sorted by relevance
468 long moh = fieldValues.remove(MINUTE_OF_HOUR); in resolveTimeFields() local471 resolveTime(hod, moh, som, nos); in resolveTimeFields()503 Long moh = fieldValues.get(MINUTE_OF_HOUR); in resolveTimeLenient() local508 if ((moh == null && (som != null || nos != null)) || in resolveTimeLenient()509 (moh != null && som == null && nos != null)) { in resolveTimeLenient()514 long mohVal = (moh != null ? moh : 0); in resolveTimeLenient()536 private void resolveTime(long hod, long moh, long som, long nos) { in resolveTime() argument539 totalNanos = Math.addExact(totalNanos, Math.multiplyExact(moh, 60_000_000_000L)); in resolveTime()546 int mohVal = MINUTE_OF_HOUR.checkValidIntValue(moh); in resolveTime()