Home
last modified time | relevance | path

Searched refs:DAYS_BEFORE (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DGrego.java55 private static final int[] DAYS_BEFORE = new int[] { field in Grego
102 DAYS_BEFORE[month + (isLeapYear(year) ? 12 : 0)] + dom; // => month/dom in fieldsToDay()
148 int dayOfMonth = dayOfYear - DAYS_BEFORE[isLeap ? month + 12 : month] + 1; // one-based DOM in dayToFields()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DGrego.java53 private static final int[] DAYS_BEFORE = new int[] { field in Grego
100 DAYS_BEFORE[month + (isLeapYear(year) ? 12 : 0)] + dom; // => month/dom in fieldsToDay()
146 int dayOfMonth = dayOfYear - DAYS_BEFORE[isLeap ? month + 12 : month] + 1; // one-based DOM in dayToFields()
/external/icu/icu4c/source/i18n/
Dgregoimp.cpp80 const int16_t Grego::DAYS_BEFORE[24] = member in Grego
94 DAYS_BEFORE[month + (isLeapYear(year) ? 12 : 0)] + dom; // => month/dom in fieldsToDay()
133 dom = doy - DAYS_BEFORE[month + (isLeap ? 12 : 0)] + 1; // one-based DOM in dayToFields()
Dgregoimp.h263 static const int16_t DAYS_BEFORE[24];