Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/format/
DParsed.java468 long moh = fieldValues.remove(MINUTE_OF_HOUR); in resolveTimeFields() local
471 resolveTime(hod, moh, som, nos); in resolveTimeFields()
503 Long moh = fieldValues.get(MINUTE_OF_HOUR); in resolveTimeLenient() local
508 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() argument
539 totalNanos = Math.addExact(totalNanos, Math.multiplyExact(moh, 60_000_000_000L)); in resolveTime()
546 int mohVal = MINUTE_OF_HOUR.checkValidIntValue(moh); in resolveTime()