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

1 2

  /external/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...]
  /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...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
PickerConstants.java 30 public static class Date {
35 private Date(Resources resources) {
74 public static PickerConstants.Date getDateInstance(Resources resources) {
75 return new Date(resources);
  /external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
ICUCurrencyMetaInfo.java 85 needed |= Date;
137 if ((needed & Date) != 0) {
249 private static final int Date = 4;
255 * A bitmask of Region/Currency/Date indicating which features we collect.
  /external/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/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);}
  /packages/services/Telephony/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 // Keep in a static inner class to allow compile-time initialization of Date.
52 private static final int VALUE = new Date().getYear();
58 * Initializes this {@code Date} instance to the current time.
60 public Date() {
390 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/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 359 Date = 26,
  /external/v8/include/
v8.h 70 class Date;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.text_3.5.0.v20100601-1300.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 1132 milliseconds

1 2