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

1 2 3

  /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...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
deterministic.js 27 var orig_date = Date;
29 Date = function() {
30 if (this instanceof Date) {
47 return new Date().toString();
49 Date.__proto__ = orig_date;
50 Date.prototype = orig_date.prototype;
51 Date.prototype.constructor = Date;
53 return new Date().getTime();
  /libcore/ojluni/src/main/java/sun/util/calendar/
Gregorian.java 39 static class Date extends BaseCalendar.Date {
40 protected Date() {
44 protected Date(TimeZone zone) {
64 public Date getCalendarDate() {
68 public Date getCalendarDate(long millis) {
72 public Date getCalendarDate(long millis, CalendarDate date) {
73 return (Date) super.getCalendarDate(millis, date);
    [all...]
JulianCalendar.java 47 private static class Date extends BaseCalendar.Date {
48 protected Date() {
53 protected Date(TimeZone zone) {
58 public Date setEra(Era era) {
121 public Date getCalendarDate() {
125 public Date getCalendarDate(long millis) {
129 public Date getCalendarDate(long millis, CalendarDate date) {
130 return (Date) super.getCalendarDate(millis, date)
    [all...]
LocalGregorianCalendar.java 51 public static class Date extends BaseCalendar.Date {
53 protected Date() {
57 protected Date(TimeZone zone) {
63 public Date setEra(Era era) {
71 public Date addYear(int localYear) {
77 public Date setYear(int localYear) {
198 public Date getCalendarDate() {
202 public Date getCalendarDate(long millis) {
206 public Date getCalendarDate(long millis, TimeZone zone)
    [all...]
BaseCalendar.java 144 public abstract static class Date extends CalendarDate {
145 protected Date() {
148 protected Date(TimeZone zone) {
152 public Date setNormalizedDate(int normalizedYear, int month, int dayOfMonth) {
162 // Cache for the fixed date of January 1 and year length of the
192 public boolean validate(CalendarDate date) {
193 Date bdate = (Date) date;
210 if (!validateTime(date)) {
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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)
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
TimestampTagTest.java 19 import java.util.Date;
48 getText("date (00:00:00Z): 2002-12-14", "date (00:00:00Z)"));
62 assertTrue(getMapValue("canonical: !!timestamp 2001-12-15T02:59:43.1Z", "canonical") instanceof Date);
67 "canonical") instanceof Date);
74 Date date = cal.getTime(); local
75 String output = dump(date);
83 Date date = cal.getTime() local
91 Date date = (Date) getMapValue(yaml, key); local
109 Date date = (Date) getMapValue("Time: 2001-11-23 15:01:42 -5", "Time"); local
117 java.sql.Date date = new java.sql.Date(1000000000000L); local
    [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/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
Tag.java 22 import java.util.Date;
63 timestampSet.add(Date.class);
64 timestampSet.add(java.sql.Date.class);
  /external/libgdx/gdx/src/com/badlogic/gdx/net/
HttpRequestHeader.java 83 /** The date and time that the message was sent (in "HTTP-date" format as defined by RFC 7231).
85 * Example: Date: Tue, 15 Nov 1994 08:12:31 GMT */
86 public static final String Date = "Date";
HttpResponseHeader.java 93 /** The date and time that the message was sent (in "HTTP-date" format as defined by RFC 7231).
95 * Example: Date: Tue, 15 Nov 1994 08:12:31 GMT */
96 public static final String Date = "Date";
103 /** Gives the date/time after which the response is considered stale.
108 /** The last modified date for the requested object (in "HTTP-date" format as defined by RFC 7231).
147 * time (in seconds) or a HTTP-date.
  /libcore/ojluni/src/main/java/java/sql/
Date.java 31 * JDBC to identify this as an SQL <code>DATE</code> value. A
35 * To conform with the definition of SQL <code>DATE</code>, the
36 * millisecond values wrapped by a <code>java.sql.Date</code> instance
41 public class Date extends java.util.Date {
44 * Constructs a <code>Date</code> object initialized with the given
53 * @deprecated instead use the constructor <code>Date(long date)</code>
56 public Date(int year, int month, int day) {
61 * Constructs a <code>Date</code> object using the given millisecond
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUCurrencyMetaInfo.java 87 needed |= Date;
139 if ((needed & Date) != 0) {
251 private static final int Date = 4;
257 * A bitmask of Region/Currency/Date indicating which features we collect.
  /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.
  /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);}
  /external/pdfium/xfa/src/fgas/include/
fx_datetime.h 189 } Date;
210 FX_DATE date; member in union:_FX_DATETIMEZONE::__anon21719::__anon21720::__anon21721
  /libcore/ojluni/src/main/java/java/util/
Date.java 42 * The class <code>Date</code> represents a specific instant
45 * Prior to JDK&nbsp;1.1, the class <code>Date</code> had two additional
48 * of date strings. Unfortunately, the API for these functions was not
52 * parse date strings.
53 * The corresponding methods in <code>Date</code> are deprecated.
55 * Although the <code>Date</code> class is intended to reflect
79 * corrections applied. There are other time and date systems as
94 * In all methods of class <code>Date</code> that accept or return
95 * year, month, date, hours, minutes, and seconds values, the
102 * <li>A date (day of month) is represented by an integer from 1 to 3
1045 BaseCalendar.Date date = normalize(); local
1137 BaseCalendar.Date date = local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mpeg2structs.h 178 BYTE Date;
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 362 Date = 26,
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_fm2jscontext.cpp     [all...]

Completed in 1687 milliseconds

1 2 3