HomeSort by relevance Sort by last modified time
    Searched defs:Date (Results 1 - 23 of 23) sorted by null

  /external/webkit/SunSpider/tests/sunspider-0.9/
date-format-xparb.js 14 Date.parseFunctions = {count:0};
15 Date.parseRegexes = [];
16 Date.formatFunctions = {count:0};
18 Date.prototype.dateFormat = function(format) {
19 if (Date.formatFunctions[format] == null) {
20 Date.createNewFormat(format);
22 var func = Date.formatFunctions[format];
26 Date.createNewFormat = function(format) {
27 var funcName = "format" + Date.formatFunctions.count++;
28 Date.formatFunctions[format] = funcName
    [all...]
date-format-tofte.js 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")
    [all...]
string-tagcloud.js 77 Date.prototype.toJSONString = function () {
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
date-format-xparb.js 14 Date.parseFunctions = {count:0};
15 Date.parseRegexes = [];
16 Date.formatFunctions = {count:0};
18 Date.prototype.dateFormat = function(format) {
19 if (Date.formatFunctions[format] == null) {
20 Date.createNewFormat(format);
22 var func = Date.formatFunctions[format];
26 Date.createNewFormat = function(format) {
27 var funcName = "format" + Date.formatFunctions.count++;
28 Date.formatFunctions[format] = funcName
    [all...]
date-format-tofte.js 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")
    [all...]
string-tagcloud.js 77 Date.prototype.toJSONString = function () {
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.js 24 ECMA Section: 15.9.5 Properties of the Date prototype object
27 The Date prototype object is itself a Date object (its [[Class]] is
28 "Date") whose value is NaN.
30 The value of the internal [[Prototype]] property of the Date prototype
33 In following descriptions of functions that are properties of the Date
34 prototype object, the phrase "this Date object" refers to the object that
37 [[Class]] property is "Date". Also, the phrase "this time value" refers
38 to the number value for the time represented by this Date object, that is,
39 the value of the internal [[Value]] property of this Date object
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
json2-es5-compat.js 40 Date.prototype.toJSON = function (key) {
88 text = JSON.stringify([new Date()], function (key, value) {
89 return this[key] instanceof Date ?
90 'Date(' + this[key] + ')' : value;
92 // text is '["Date(---current time---)"]'
107 // Parse the text. Values that look like ISO date strings will
108 // be converted to Date objects.
116 return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4],
123 myData = JSON.parse('["Date(09/09/2001)"]', function (key, value)
    [all...]
  /external/webkit/SunSpider/hosted/
json2.js 48 Date.prototype.toJSON = function (key) {
96 text = JSON.stringify([new Date()], function (key, value) {
97 return this[key] instanceof Date ?
98 'Date(' + this[key] + ')' : value;
100 // text is '["Date(---current time---)"]'
115 // Parse the text. Values that look like ISO date strings will
116 // be converted to Date objects.
124 return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4],
131 myData = JSON.parse('["Date(09/09/2001)"]', function (key, value)
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
Date.java 21 * A class which can consume and produce dates in SQL {@code Date} format.
23 * Dates are represented in SQL as {@code yyyy-mm-dd}. Note that this date
27 * This is unlike the familiar {@code java.util.Date} object, which also includes
32 * java.sql.Date} class are "normalized" to the time 00:00:00.000 GMT on the
33 * date implied by the time value.
35 public class Date extends java.util.Date {
40 * Constructs a {@code Date} object corresponding to the supplied year,
43 * @deprecated Use the constructor {@link #Date(long)}.
54 public Date(int theYear, int theMonth, int theDay)
    [all...]
  /external/webkit/WebCore/html/
DateComponents.h 41 // A DateComponents instance represents one of the following date and time combinations:
43 // * Date type: year-month-day
113 // For Date type. Updates m_year, m_month and m_monthDay.
177 Date,
  /external/webkit/WebKit/chromium/public/
WebInputElement.h 77 Date,
  /dalvik/libcore/luni/src/main/java/java/util/
Date.java 31 * {@code Date} represents a specific moment in time, to the millisecond.
39 public class Date implements Serializable, Cloneable, Comparable<Date> {
44 private static int creationYear = new Date().getYear();
56 * Initializes this {@code Date} instance to the current time.
58 public Date() {
63 * Constructs a new {@code Date} initialized to midnight in the default {@code TimeZone} on
64 * the specified date.
77 public Date(int year, int month, int day) {
84 * Constructs a new {@code Date} initialized to the specified date and time in th
389 int year = -1, month = -1, date = -1; local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 99 private static class Date {
104 public Date(String year, int month, int day) {
140 Date d; Time t;
156 d = date();
202 final public Date date() throws ParseException { method in class:DateTimeParser
207 {if (true) return new Date(y, m, d);}
  /external/webkit/WebCore/bridge/qt/
qt_runtime.cpp 95 Date,
108 const char *map[] = { "Variant", "Number", "Boolean", "String", "Date",
136 return Date;
185 case Date:
458 if (type == Date) {
459 DateInstance* date = static_cast<DateInstance*>(object); local
461 msToGregorianDateTime(exec, date->internalNumber(), true, gdt);
815 QDate date = QDate::currentDate(); local
819 date = variant.value<QDate>();
824 date = dt.date()
    [all...]
  /external/v8/include/
v8.h 120 class Date;
758 * Returns true if this value is a Date.
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 91 var natives = {'Array': Array, 'Date': Date, 'Function': Function, 'Number': Number, 'RegExp': RegExp, 'String': String};
241 var $time = Date.now || function(){
242 return +new Date;
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/common/jython/
jython.jar 

Completed in 435 milliseconds