Searched refs:daysInMonth (Results 1 - 5 of 5) sorted by relevance
/external/webkit/SunSpider/tests/sunspider-0.9/ |
H A D | 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/ |
H A D | 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/WebCore/html/ |
H A D | DateComponents.cpp | 49 static const int daysInMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; member in namespace:WebCore 66 return daysInMonth[month];
|
/external/icu4c/i18n/ |
H A D | calendar.cpp | 2180 int32_t daysInMonth = handleGetLimit(UCAL_DAY_OF_MONTH, limitType); local 2182 limit = (daysInMonth + (7 - minDaysInFirst)) / 7; 2184 limit = (daysInMonth + 6 + (7 - minDaysInFirst)) / 7;
|
/external/libxml2/ |
H A D | xmlschemastypes.c | 1122 static const unsigned int daysInMonth[12] = variable 1128 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1]) 1133 (dt->day <= daysInMonth[dt->mon - 1])) 3826 * Coverity detected an overrun in daysInMonth
|
Completed in 82 milliseconds