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

/libcore/ojluni/src/main/java/java/time/format/
H A DParsed.java468 long moh = fieldValues.remove(MINUTE_OF_HOUR);
471 resolveTime(hod, moh, som, nos);
503 Long moh = fieldValues.get(MINUTE_OF_HOUR);
508 if ((moh == null && (som != null || nos != null)) ||
509 (moh != null && som == null && nos != null)) {
514 long mohVal = (moh != null ? moh : 0);
536 private void resolveTime(long hod, long moh, long som, long nos) { argument
539 totalNanos = Math.addExact(totalNanos, Math.multiplyExact(moh, 60_000_000_000L));
546 int mohVal = MINUTE_OF_HOUR.checkValidIntValue(moh);
[all...]

Completed in 5 milliseconds