/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | GregorianCalendar.java | 782 boolean isLeap = ((eyear&0x3) == 0); // equiv. to (eyear%4 == 0) in handleComputeFields() 786 int march1 = isLeap ? 60 : 59; // zero-based DOY for March 1 in handleComputeFields() 788 correction = isLeap ? 1 : 2; in handleComputeFields() 791 dayOfMonth = dayOfYear - MONTH_COUNT[month][isLeap?3:2] + 1; // one-based DOM in handleComputeFields() 863 boolean isLeap = eyear%4 == 0; in handleComputeMonthStart() 872 isLeap = isLeap && ((eyear%100 != 0) || (eyear%400 == 0)); in handleComputeMonthStart() 883 julianDay += MONTH_COUNT[month][isLeap?3:2]; in handleComputeMonthStart()
|
D | Calendar.java | 5128 boolean isLeap = ((year&0x3) == 0) && // equiv. to (year%4 == 0) in computeGregorianFields() 5132 int march1 = isLeap ? 60 : 59; // zero-based DOY for March 1 in computeGregorianFields() 5133 if (dayOfYear >= march1) correction = isLeap ? 1 : 2; in computeGregorianFields() 5136 GREGORIAN_MONTH_COUNT[month][isLeap?3:2] + 1; // one-based DOM in computeGregorianFields() 6024 boolean isLeap = (year%4 == 0) && ((year%100 != 0) || (year%400 == 0)); in computeGregorianMonthStart() 6035 julianDay += GREGORIAN_MONTH_COUNT[month][isLeap?3:2]; in computeGregorianMonthStart()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | GregorianCalendar.java | 757 boolean isLeap = ((eyear&0x3) == 0); // equiv. to (eyear%4 == 0) in handleComputeFields() 761 int march1 = isLeap ? 60 : 59; // zero-based DOY for March 1 in handleComputeFields() 763 correction = isLeap ? 1 : 2; in handleComputeFields() 766 dayOfMonth = dayOfYear - MONTH_COUNT[month][isLeap?3:2] + 1; // one-based DOM in handleComputeFields() 835 boolean isLeap = eyear%4 == 0; in handleComputeMonthStart() 844 isLeap = isLeap && ((eyear%100 != 0) || (eyear%400 == 0)); in handleComputeMonthStart() 855 julianDay += MONTH_COUNT[month][isLeap?3:2]; in handleComputeMonthStart()
|
D | Calendar.java | 4966 boolean isLeap = ((year&0x3) == 0) && // equiv. to (year%4 == 0) in computeGregorianFields() 4970 int march1 = isLeap ? 60 : 59; // zero-based DOY for March 1 in computeGregorianFields() 4971 if (dayOfYear >= march1) correction = isLeap ? 1 : 2; in computeGregorianFields() 4974 GREGORIAN_MONTH_COUNT[month][isLeap?3:2] + 1; // one-based DOM in computeGregorianFields() 5846 boolean isLeap = (year%4 == 0) && ((year%100 != 0) || (year%400 == 0)); in computeGregorianMonthStart() 5857 julianDay += GREGORIAN_MONTH_COUNT[month][isLeap?3:2]; in computeGregorianMonthStart()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Grego.java | 141 boolean isLeap = isLeapYear(year); in dayToFields() 143 int march1 = isLeap ? 60 : 59; // zero-based DOY for March 1 in dayToFields() 145 correction = isLeap ? 1 : 2; in dayToFields() 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/ |
D | Grego.java | 139 boolean isLeap = isLeapYear(year); in dayToFields() 141 int march1 = isLeap ? 60 : 59; // zero-based DOY for March 1 in dayToFields() 143 correction = isLeap ? 1 : 2; in dayToFields() 146 int dayOfMonth = dayOfYear - DAYS_BEFORE[isLeap ? month + 12 : month] + 1; // one-based DOM in dayToFields()
|
/external/icu/icu4c/source/i18n/ |
D | gregoimp.cpp | 115 UBool isLeap = isLeapYear(year); in dayToFields() local 123 int32_t march1 = isLeap ? 60 : 59; // zero-based DOY for March 1 in dayToFields() 125 correction = isLeap ? 1 : 2; in dayToFields() 128 dom = doy - DAYS_BEFORE[month + (isLeap ? 12 : 0)] + 1; // one-based DOM in dayToFields()
|
D | gregocal.cpp | 403 UBool isLeap = ((eyear&0x3) == 0); // equiv. to (eyear%4 == 0) in handleComputeFields() local 407 int32_t march1 = isLeap ? 60 : 59; // zero-based DOY for March 1 in handleComputeFields() 409 correction = isLeap ? 1 : 2; in handleComputeFields() 412 dayOfMonth = dayOfYear - (isLeap?kLeapNumDays[month]:kNumDays[month]) + 1; // one-based DOM in handleComputeFields() 543 UBool isLeap = eyear%4 == 0; in handleComputeMonthStart() local 556 isLeap = isLeap && ((eyear%100 != 0) || (eyear%400 == 0)); in handleComputeMonthStart() 572 julianDay += isLeap?kLeapNumDays[month]:kNumDays[month]; in handleComputeMonthStart() 717 int32_t year, UBool& isLeap) in computeJulianDayOfYear() argument 719 isLeap = year%4 == 0; in computeJulianDayOfYear() 724 isLeap = isLeap && ((year%100 != 0) || (year%400 == 0)); in computeJulianDayOfYear()
|
D | hebrwcal.cpp | 583 UBool isLeap = isLeapYear(year); in handleComputeFields() local 587 …while (month < momax && dayOfYear > ( isLeap ? LEAP_MONTH_START[month][type] : MONTH_START[month]… in handleComputeFields() 604 … int dayOfMonth = dayOfYear - (isLeap ? LEAP_MONTH_START[month][type] : MONTH_START[month][type]); in handleComputeFields()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
D | CopticTest.java | 231 boolean isLeap = ((year % 4) == 3); in Test6379() 240 int expected = (month != maxMonth) ? 30 : (isLeap ? 6 : 5); in Test6379()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
D | CopticTest.java | 230 boolean isLeap = ((year % 4) == 3); in Test6379() 239 int expected = (month != maxMonth) ? 30 : (isLeap ? 6 : 5); in Test6379()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | gregocal.h | 663 UBool& isLeap);
|
/external/caliper/lib/ |
D | joda-time-2.1.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/joda/
org/ ... |
/external/icu/icu4c/source/tools/tzcode/ |
D | tz2icu.cpp | 66 bool isLeap(int32_t y) { in isLeap() function 71 return isLeap(y) ? SECS_PER_LEAP_YEAR : SECS_PER_YEAR; in secsPerYear()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SimpleDateFormat.java | 1632 boolean isLeap = HebrewCalendar.isLeapYear(cal.get(Calendar.YEAR)); in subFormat() 1633 if (isLeap && value == 6 && count >= 3 ) { in subFormat() 1636 if (!isLeap && value >= 6 && count < 3 ) { in subFormat()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SimpleDateFormat.java | 1622 boolean isLeap = HebrewCalendar.isLeapYear(cal.get(Calendar.YEAR)); in subFormat() 1623 if (isLeap && value == 6 && count >= 3 ) { in subFormat() 1626 if (!isLeap && value >= 6 && count < 3 ) { in subFormat()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | com.ibm.icu_4.2.1.v20100412.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/robolectric/v3/runtime/ |
D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.3_r2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.4_r1-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |