HomeSort by relevance Sort by last modified time
    Searched refs:yoeLong (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/java/time/chrono/
IsoChronology.java 509 Long yoeLong = fieldValues.remove(YEAR_OF_ERA);
510 if (yoeLong != null) {
512 YEAR_OF_ERA.checkValidValue(yoeLong);
520 addFieldValue(fieldValues, YEAR, (year > 0 ? yoeLong: Math.subtractExact(1, yoeLong)));
523 fieldValues.put(YEAR_OF_ERA, yoeLong);
527 addFieldValue(fieldValues, YEAR, (year == null || year > 0 ? yoeLong: Math.subtractExact(1, yoeLong)));
530 addFieldValue(fieldValues, YEAR, yoeLong);
532 addFieldValue(fieldValues, YEAR, Math.subtractExact(1, yoeLong));
    [all...]
JapaneseChronology.java 445 Long yoeLong = fieldValues.get(YEAR_OF_ERA);
447 if (yoeLong != null) {
448 yoe = range(YEAR_OF_ERA).checkValidIntValue(yoeLong, YEAR_OF_ERA); // always validated
451 if (era == null && yoeLong != null && fieldValues.containsKey(YEAR) == false && resolverStyle != ResolverStyle.STRICT) {
455 if (yoeLong != null && era != null) {
AbstractChronology.java 514 Long yoeLong = fieldValues.remove(YEAR_OF_ERA);
515 if (yoeLong != null) {
519 yoe = range(YEAR_OF_ERA).checkValidIntValue(yoeLong, YEAR_OF_ERA);
521 yoe = Math.toIntExact(yoeLong);
534 fieldValues.put(YEAR_OF_ERA, yoeLong);
    [all...]

Completed in 358 milliseconds