Lines Matching refs:transition

58  * GregorianCalendar}, the Julian to Gregorian transition is not
121 // transition dates are given in Gregorian dates.
243 // era transition in a Gregorian year.
550 // the daylight saving time transition brings it to
661 CalendarDate transition = null;
663 transition = eras[eraIndex].getSinceDate();
664 min = transition.getMonth() - 1;
667 transition = eras[eraIndex + 1].getSinceDate();
668 if (transition.getYear() == jdate.getNormalizedYear()) {
669 max = transition.getMonth() - 1;
670 if (transition.getDayOfMonth() == 1) {
686 if (!(transition.getMonth() == BaseCalendar.JANUARY
687 && transition.getDayOfMonth() == 1)) {
688 if (jdate.getDayOfMonth() < transition.getDayOfMonth()) {
689 set(DAY_OF_MONTH, transition.getDayOfMonth());
692 } else if (n == max && (transition.getMonth() - 1 == n)) {
693 int dom = transition.getDayOfMonth();
750 // Handle transition here.
853 // Handle transition. We can't change year and era values
879 // boundaries and in the transition year. Note that
1312 long transition = sinceFixedDates[eraIndex];
1314 if (fd < transition) {
1317 jcal.getCalendarDateFromFixedDate(ldate, transition - 1);
1337 // Handle transition year.
1344 long transition = sinceFixedDates[eraIndex];
1348 if (fd < transition) {
1349 value = (int)(transition - gcal.getFixedDate(d));
1352 value = (int)(gcal.getFixedDate(d) - transition);
1703 // If it's a year of an era transition, we need to handle
1733 // a transition year, we need to take care of it.
1933 // 1. The transition into DST. Here, a designated time of 2:00 am - 2:59 am
1937 // 2. The transition out of DST. Here, a designated time of 1:00 am - 1:59 am
2166 * calculated. The date must be in the era transition year.
2173 long transition = sinceFixedDates[eraIndex];
2174 // If the given date is on or after the transition date, then
2175 // return the transition date.
2176 if (transition <= fixedDate) {
2177 return transition;
2236 * transition month. For example, if the give date is Heisei 1
2240 * given date is not in any transition month, then -1 is returned.