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

1 2 3

  /external/chromium_org/third_party/WebKit/PerformanceTests/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/chromium_org/third_party/WebKit/PerformanceTests/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
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/chromium_org/v8/test/webkit/resources/
json2-es5-compat.js 44 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---)"]'
111 // Parse the text. Values that look like ISO date strings will
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)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/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...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chromevox_json.js 47 if (typeof Date.prototype.toJSON !== 'function') {
49 Date.prototype.toJSON = function(key) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 35 Date = datetime.date
42 return Date(*time.localtime(ticks)[:3])
63 return datetime.date(*map(int, val.split("-")))
79 register_adapter(datetime.date, adapt_date)
81 register_converter("date", convert_date)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 35 Date = datetime.date
42 return Date(*time.localtime(ticks)[:3])
63 return datetime.date(*map(int, val.split("-")))
79 register_adapter(datetime.date, adapt_date)
81 register_converter("date", convert_date)
  /libcore/luni/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.
36 public class Date extends java.util.Date {
41 * Constructs a {@code Date} object corresponding to the supplied year,
44 * @deprecated Use the constructor {@link #Date(long)} instead.
55 public Date(int theYear, int theMonth, int theDay)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.h 41 // A DateComponents instance represents one of the following date and time combinations:
43 // * Date type: year-month-day
64 Date,
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.
170 // So, we have the same upper limit in HTML5 date/time types.
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 51 // 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/
date.js 11 var $Date = global.Date;
15 // This file contains date support implemented in JavaScript.
19 throw new $TypeError('this is not a Date object.');
66 // Compute number of days given a year, month, date.
67 // Note that month and date can lie outside the normal range.
72 function MakeDay(year, month, date) {
73 if (!$isFinite(year) || !$isFinite(month) || !$isFinite(date)) return NAN;
78 date = TO_INTEGER_MAP_MINUS_ZERO(date);
    [all...]
  /packages/apps/UnifiedEmail/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);}
  /libcore/luni/src/main/java/java/util/
Date.java 35 * Use {@link java.text.DateFormat} to format a {@code Date} for display to a human.
36 * Use {@link Calendar} to break down a {@code Date} if you need to extract fields such
37 * as the current month or day of week, or to construct a {@code Date} from a broken-down
41 * allow you to interpret a {@code Date} in a given time zone.
45 public class Date implements Serializable, Cloneable, Comparable<Date> {
50 private static final int CREATION_YEAR = new Date().getYear();
55 * Initializes this {@code Date} instance to the current time.
57 public Date() {
62 * Constructs a new {@code Date} initialized to midnight in the default {@code TimeZone} o
387 int year = -1, month = -1, date = -1; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mpeg2structs.h 178 BYTE Date;
wincrypt.h     [all...]
winnt.h     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/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...]
  /external/chromium_org/v8/include/
v8.h 70 class Date;
    [all...]

Completed in 933 milliseconds

1 2 3