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

  /libcore/ojluni/src/main/java/java/time/chrono/
MinguoDate.java 235 return (getProlepticYear() >= 1 ? MinguoEra.ROC : MinguoEra.BEFORE_ROC);
264 long max = (getProlepticYear() <= 0 ? -range.getMinimum() + 1 + YEARS_DIFFERENCE : range.getMaximum() - YEARS_DIFFERENCE);
282 int prolepticYear = getProlepticYear();
286 return getProlepticYear();
288 return (getProlepticYear() >= 1 ? 1 : 0);
296 return getProlepticYear() * 12L + isoDate.getMonthValue() - 1;
299 private int getProlepticYear() {
321 return with(isoDate.withYear(getProlepticYear() >= 1 ? nvalue + YEARS_DIFFERENCE : (1 - nvalue) + YEARS_DIFFERENCE));
325 return with(isoDate.withYear((1 - getProlepticYear()) + YEARS_DIFFERENCE));
ThaiBuddhistDate.java 235 return (getProlepticYear() >= 1 ? ThaiBuddhistEra.BE : ThaiBuddhistEra.BEFORE_BE);
264 long max = (getProlepticYear() <= 0 ? -(range.getMinimum() + YEARS_DIFFERENCE) + 1 : range.getMaximum() + YEARS_DIFFERENCE);
282 int prolepticYear = getProlepticYear();
286 return getProlepticYear();
288 return (getProlepticYear() >= 1 ? 1 : 0);
296 return getProlepticYear() * 12L + isoDate.getMonthValue() - 1;
299 private int getProlepticYear() {
321 return with(isoDate.withYear((getProlepticYear() >= 1 ? nvalue : 1 - nvalue) - YEARS_DIFFERENCE));
325 return with(isoDate.withYear((1 - getProlepticYear()) - YEARS_DIFFERENCE));

Completed in 66 milliseconds