Searched refs:moh (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/time/format/ |
D | Parsed.java | 485 long moh = mohObj != null ? Math.floorMod(mohObj, 60) : 0; in resolveTimeFields() local 486 … long excessHours = dayPeriod.includes((Math.floorMod(hoap, 12) + 12) * 60 + moh) ? 12 : 0; in resolveTimeFields() 496 long moh = fieldValues.remove(MINUTE_OF_HOUR); in resolveTimeFields() local 499 resolveTime(hod, moh, som, nos); in resolveTimeFields() 552 Long moh = fieldValues.get(MINUTE_OF_HOUR); in resolveTimeLenient() local 557 if ((moh == null && (som != null || nos != null)) || in resolveTimeLenient() 558 (moh != null && som == null && nos != null)) { in resolveTimeLenient() 563 long mohVal = (moh != null ? moh : 0); in resolveTimeLenient() 594 private void resolveTime(long hod, long moh, long som, long nos) { in resolveTime() argument 597 totalNanos = Math.addExact(totalNanos, Math.multiplyExact(moh, 60_000_000_000L)); in resolveTime() [all …]
|