Searched defs:Date (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Ddate-format-xparb.js14 Date.parseFunctions = {count:0};
15 Date.parseRegexes = [];
16 Date.formatFunctions = {count:0}; class
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
[all...]
H A Ddate-format-tofte.js8 Date.prototype.formatDate = function (input,time) {
201 var ny = new Date("January 1 " + Y() + " 00:00:00");
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");
6 Date.prototype.formatDate = function (input,time) { class
H A Dstring-tagcloud.js77 Date.prototype.toJSONString = function () {
74 Date.prototype.toJSONString = function () { class
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Ddate-format-xparb.js14 Date.parseFunctions = {count:0};
15 Date.parseRegexes = [];
16 Date.formatFunctions = {count:0}; class
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
[all...]
H A Ddate-format-tofte.js8 Date.prototype.formatDate = function (input,time) {
201 var ny = new Date("January 1 " + Y() + " 00:00:00");
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");
6 Date.prototype.formatDate = function (input,time) { class
H A Dstring-tagcloud.js77 Date.prototype.toJSONString = function () {
74 Date.prototype.toJSONString = function () { class
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Ddate-format-xparb.js14 Date.parseFunctions = {count:0};
15 Date.parseRegexes = [];
16 Date.formatFunctions = {count:0}; class
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
[all...]
H A Ddate-format-tofte.js8 Date.prototype.formatDate = function (input,time) {
201 var ny = new Date("January 1 " + Y() + " 00:00:00");
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");
6 Date.prototype.formatDate = function (input,time) { class
H A Dstring-tagcloud.js77 Date.prototype.toJSONString = function () {
74 Date.prototype.toJSONString = function () { class
/external/chromium_org/v8/test/webkit/resources/
H A Djson2-es5-compat.js44 Date.prototype.toJSON = function (key) {
92 text = JSON.stringify([new Date()], function (key, value) {
93 return this[key] instanceof Date ?
94 'Date(' + this[key] + ')' : value;
96 // text is '["Date(---current time---)"]'
112 // be converted to Date objects.
120 return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4],
127 myData = JSON.parse('["Date(09/09/2001)"]', function (key, value) {
130 value.slice(0, 5) === 'Date('
175 Date.prototype.toJSON = function (key) { class
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
H A Djson2.js48 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---)"]'
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) {
134 value.slice(0, 5) === 'Date('
173 Date.prototype.toJSON = function (key) { class
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchromevox_json.js47 if (typeof Date.prototype.toJSON !== 'function') { class
49 Date.prototype.toJSON = function(key) {
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDateComponents.h43 // * Date type: year-month-day
64 Date, enumerator in enum:blink::DateComponents::Type
125 // For Date type. Updates m_year, m_month and m_monthDay.
169 // Date in ECMAScript can't represent dates later than 275760-09-13T00:00Z.
/external/chromium_org/v8/test/webkit/fast/js/
H A DObject-getOwnPropertyNames.js51 // Date objects
52 "new Date()": "[]",
53 "(function(){var x=new Date();x.__proto__=[1,2,3];return x;})()": "[]",
86 "Date": "['UTC', 'arguments', 'caller', 'length', 'name', 'now', 'parse', 'prototype']",
87 "Date.prototype": "['constructor', 'getDate', 'getDay', 'getFullYear', 'getHours', 'getMilliseconds', 'getMinutes', 'getMonth', 'getSeconds', 'getTime', 'getTimezoneOffset', 'getUTCDate', 'getUTCDay', 'getUTCFullYear', 'getUTCHours', 'getUTCMilliseconds', 'getUTCMinutes', 'getUTCMonth', 'getUTCSeconds', 'getYear', 'setDate', 'setFullYear', 'setHours', 'setMilliseconds', 'setMinutes', 'setMonth', 'setSeconds', 'setTime', 'setUTCDate', 'setUTCFullYear', 'setUTCHours', 'setUTCMilliseconds', 'setUTCMinutes', 'setUTCMonth', 'setUTCSeconds', 'setYear', 'toDateString', 'toGMTString', 'toISOString', 'toJSON', 'toLocaleDateString', 'toLocaleString', 'toLocaleTimeString', 'toString', 'toTimeString', 'toUTCString', 'valueOf']",
127 "Date",
/external/chromium_org/v8/src/
H A Ddate.js11 var $Date = global.Date;
19 throw new $TypeError('this is not a Date object.');
111 // The Date cache is used to limit the cost of parsing the same Date
124 return (new $Date()).toString();
137 // Probe the Date cache. If we already have a time value for the
154 // Date objects which will lose precision when the Date
155 // constructor is called with another Date objec
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js91 var natives = {'Array': Array, 'Date': Date, 'Function': Function, 'Number': Number, 'RegExp': RegExp, 'String': String}; property
241 var $time = Date.now || function(){
242 return +new Date;
2993 var date = new Date();
3802 var noCache = "noCache=" + new Date().getTime();
/external/chromium_org/v8/include/
H A Dv8.h70 class Date;
1523 * Returns true if this value is a Date.
3170 * An instance of the built-in Date constructor (ECMA-262, 15.9).
3172 class V8_EXPORT Date : public Object { class in namespace:v8
3182 V8_INLINE static Date* Cast(v8::Value* obj);
3190 * time configuration changes would be reflected in the Date
6582 Date* Date::Cast(v8::Value* value) {
6586 return static_cast<Date*>(value);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 482 milliseconds