Home
last modified time | relevance | path

Searched refs:daysInMonth (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
Ddate-format-xparb.js293 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_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
Ddate-format-xparb.js293 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_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
Ddate-format-xparb.js293 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_org/base/third_party/nspr/
Dprtime.cc333 int daysInMonth; in PR_NormalizeTime() local
405 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month]; in PR_NormalizeTime()
406 while (time->tm_mday > daysInMonth) { in PR_NormalizeTime()
408 time->tm_mday -= daysInMonth; in PR_NormalizeTime()
414 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month]; in PR_NormalizeTime()
/external/chromium_org/third_party/WebKit/Source/platform/
DDateComponents.cpp54 static const int daysInMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; variable
60 return daysInMonth[month]; in maxDayOfMonth()
/external/chromium_org/third_party/libxslt/libexslt/
Ddate.c150 static const unsigned long daysInMonth[12] = variable
156 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1])
161 (dt->day <= daysInMonth[dt->mon - 1]))
/external/chromium_org/third_party/icu/source/i18n/
Dcalendar.cpp2299 int32_t daysInMonth = handleGetLimit(UCAL_DAY_OF_MONTH, limitType); in getLimit() local
2301 limit = (daysInMonth + (7 - minDaysInFirst)) / 7; in getLimit()
2303 limit = (daysInMonth + 6 + (7 - minDaysInFirst)) / 7; in getLimit()
/external/icu/icu4c/source/i18n/
Dcalendar.cpp2634 int32_t daysInMonth = handleGetLimit(UCAL_DAY_OF_MONTH, limitType); in getLimit() local
2636 limit = (daysInMonth + (7 - minDaysInFirst)) / 7; in getLimit()
2638 limit = (daysInMonth + 6 + (7 - minDaysInFirst)) / 7; in getLimit()
/external/chromium_org/third_party/libxml/src/
Dxmlschemastypes.c1122 static const unsigned int daysInMonth[12] = variable
1128 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1])
1133 (dt->day <= daysInMonth[dt->mon - 1]))
/external/libxml2/
Dxmlschemastypes.c1122 static const unsigned int daysInMonth[12] = variable
1128 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1])
1133 (dt->day <= daysInMonth[dt->mon - 1]))