Home | History | Annotate | Download | only in sunspider-0.9.1

Lines Matching defs:Date

8 Date.prototype.formatDate = function (input,time) {
10 // a PHP date like function, for formatting date strings
11 // See: http://www.php.net/date
17 // the current "this" date object's set time.
158 // RFC 822 formatted date
201 var ny = new Date("January 1 " + Y() + " 00:00:00");
210 // of the previous year, as the date, and then just
212 var prevNY = new Date("December 31 " + (Y()-1) + " 00:00:00");
238 var newDate = new Date("January 1 2001 00:00:00 +0000");
260 var t = new Date("January 1 " + Y() + " 00:00:00");
292 var date = new Date("1/1/2007 1:11:11");
295 var shortFormat = date.formatDate("Y-m-d");
296 var longFormat = date.formatDate("l, F d, Y g:i:s A");
297 date.setTime(date.getTime() + 84266956);