HomeSort by relevance Sort by last modified time
    Searched refs:daysInMonth (Results 1 - 8 of 8) 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]);
509 if (date > daysInMonth(leapYear, month)) {
510 date -= daysInMonth(leapYear, month);
540 if (date > daysInMonth(leapYear, month)) {
541 date -= daysInMonth(leapYear, month);
832 && (fields[DATE] < 1 || fields[DATE] > daysInMonth(
    [all...]
SimpleTimeZone.java 357 int ruleDay = 0, daysInMonth, firstDayOfMonth = mod7(dayOfWeek - day);
368 daysInMonth = GregorianCalendar.DaysInMonth[startMonth];
371 daysInMonth += 1;
373 ruleDay = daysInMonth
376 - (firstDayOfMonth + daysInMonth))
411 daysInMonth = GregorianCalendar.DaysInMonth[endMonth];
413 daysInMonth++;
415 ruleDay = daysInMonth
    [all...]
  /external/webkit/PerformanceTests/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/PerformanceTests/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 324 int daysInMonth;
396 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month];
397 while (time->tm_mday > daysInMonth) {
399 time->tm_mday -= daysInMonth;
405 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month];
    [all...]
  /external/webkit/Source/WebCore/html/
DateComponents.cpp 54 static const int daysInMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
71 return daysInMonth[month];
  /external/icu4c/i18n/
calendar.cpp     [all...]
  /external/libxml2/
xmlschemastypes.c     [all...]

Completed in 148 milliseconds