Home | History | Annotate | Download | only in i18n

Lines Matching refs:ADAR_1

220           // reason is ADAR_1.  Suppose amount is +2 and we land in
221 // ADAR_1 -- then we have to bump to ADAR_2 aka ADAR. But
222 // if amount is -2 and we land in ADAR_1, then we have to
228 acrossAdar1 = (month < ADAR_1); // started before ADAR_1?
231 if (acrossAdar1 && month>=ADAR_1 && !isLeapYear(year)) {
242 acrossAdar1 = (month > ADAR_1); // started after ADAR_1?
245 if (acrossAdar1 && month<=ADAR_1 && !isLeapYear(year)) {
324 // of ADAR_1, we need to roll an extra month to make up for it.
327 if (amount > 0 && month < ADAR_1 && newMonth >= ADAR_1) {
329 } else if (amount < 0 && month > ADAR_1 && newMonth <= ADAR_1) {