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

  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 207 static byte[] DaysInMonth = new byte[] { 31, 28, 31, 30, 31, 30, 31, 31,
400 int days = daysInMonth(isLeapYear(fields[YEAR]), fields[MONTH]);
490 if (date > daysInMonth(leapYear, month)) {
491 date -= daysInMonth(leapYear, month);
521 if (date > daysInMonth(leapYear, month)) {
522 date -= daysInMonth(leapYear, month);
815 && (fields[DATE] < 1 || fields[DATE] > daysInMonth(
837 days += daysInMonth(leapYear, month)
839 - (days + daysInMonth(leapYear, month) - 3)
    [all...]
SimpleTimeZone.java 409 int ruleDay = 0, daysInMonth, firstDayOfMonth = mod7(dayOfWeek - day);
420 daysInMonth = GregorianCalendar.DaysInMonth[startMonth];
423 daysInMonth += 1;
425 ruleDay = daysInMonth
428 - (firstDayOfMonth + daysInMonth))
463 daysInMonth = GregorianCalendar.DaysInMonth[endMonth];
465 daysInMonth++;
467 ruleDay = daysInMonth
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
date-format-xparb.js 293 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
295 num += Date.daysInMonth[i];
321 var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
326 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
327 return Date.daysInMonth[this.getMonth()];
362 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
date-format-xparb.js 293 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
295 num += Date.daysInMonth[i];
321 var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
326 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
327 return Date.daysInMonth[this.getMonth()];
362 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
  /external/chromium/base/third_party/nspr/
prtime.cc 323 int daysInMonth;
395 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month];
396 while (time->tm_mday > daysInMonth) {
398 time->tm_mday -= daysInMonth;
404 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month];
    [all...]
  /external/webkit/WebCore/html/
DateComponents.cpp 49 static const int daysInMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
66 return daysInMonth[month];
  /external/chromium/third_party/icu/source/i18n/
calendar.cpp     [all...]
  /external/icu4c/i18n/
calendar.cpp     [all...]
  /external/libxml2/
xmlschemastypes.c     [all...]

Completed in 253 milliseconds