HomeSort by relevance Sort by last modified time
    Searched refs:Date (Results 26 - 50 of 664) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/cookie/
SetCookie.java 4 * $Date: 2008-01-31 11:26:47 -0800 (Thu, 31 Jan 2008) $
34 import java.util.Date;
59 * Sets expiration date.
64 * @param expiryDate the {@link Date} after which this cookie is no longer valid.
69 void setExpiryDate (Date expiryDate);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.2.2-1.js 24 ECMA Section: 15.9.2.2 Date constructor used as a function
25 Date( year, month, date, hours, minutes, seconds )
28 expression (new Date()).toString().
31 Date: 28 october 1997
39 var TITLE = "The Date Constructor Called as a Function";
54 array[item++] = new TestCase( SECTION, "Date(1970,0,1,0,0,0)", (new Date()).toString(), Date(1970,0,1,0,0,0) );
55 array[item++] = new TestCase( SECTION, "Date(1969,11,31,15,59,59)", (new Date()).toString(), Date(1969,11,31,15,59,59)
    [all...]
15.9.2.2-3.js 24 ECMA Section: 15.9.2.2 Date constructor used as a function
25 Date( year, month, date, hours, minutes, seconds )
28 expression (new Date()).toString().
31 Date: 28 october 1997
39 var TITLE = "The Date Constructor Called as a Function";
54 array[item++] = new TestCase( SECTION, "Date(1899,11,31,23,59,59)", (new Date()).toString(), Date(1899,11,31,23,59,59));
55 array[item++] = new TestCase( SECTION, "Date(1900,0,1,0,0,0)", (new Date()).toString(), Date(1900,0,1,0,0,0) )
    [all...]
15.9.2.2-5.js 24 ECMA Section: 15.9.2.2 Date constructor used as a function
25 Date( year, month, date, hours, minutes, seconds )
28 expression (new Date()).toString().
31 Date: 28 october 1997
39 var TITLE = "The Date Constructor Called as a Function";
53 array[item++] = new TestCase( SECTION, "Date(2004,11,31,23,59,59)", (new Date()).toString(), Date(2004,11,31,23,59,59));
54 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,0)", (new Date()).toString(), Date(2005,0,1,0,0,0) )
    [all...]
15.9.2.2-6.js 24 ECMA Section: 15.9.2.2 Date constructor used as a function
25 Date( year, month, date, hours, minutes, seconds )
28 expression (new Date()).toString().
31 Date: 28 october 1997
39 var TITLE = "The Date Constructor Called as a Function";
53 array[item++] = new TestCase( SECTION, "Date(2031,11,31,23,59,59)", (new Date()).toString(), Date(2031,11,31,23,59,59));
54 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,0)", (new Date()).toString(), Date(2032,0,1,0,0,0) )
    [all...]
15.9.4.3.js 26 var TITLE = "Date.UTC( year, month, date, hours, minutes, seconds, ms )";
34 this.date = 0;
41 function utc( year, month, date, hours, minutes, seconds, ms ) {
47 if (date)
48 d.date = Number(date);
62 if (isNaN(month) || isNaN(year) || isNaN(date) || isNaN(hours) ||
66 d.date = Number.NaN;
77 d.day = MakeDay( d.year, d.month, d.date );
    [all...]
15.9.3.1-1.js 24 ECMA Section: 15.9.3.1 new Date (year, month, date, hours, minutes, seconds, ms)
26 object is set to the original Date prototype object,
27 the one that is the initial value of Date.prototype.
33 3. Call ToNumber(date)
50 Date object.
53 Date: 7 july 1997
59 var TITLE = "new Date( year, month, date, hours, minutes, seconds, ms )";
73 var DATE = 11
    [all...]
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...]
15.9.5.5.js 25 Description: Date.prototype.getYear
36 Date: 12 november 1997
42 var TITLE = "Date.prototype.getYear()";
51 var now = (new Date()).valueOf();
65 "(new Date(NaN)).getYear()",
67 (new Date(NaN)).getYear() );
70 "Date.prototype.getYear.length",
72 Date.prototype.getYear.length );
77 "(new Date("+t+")).getYear()",
79 (new Date(t)).getYear() )
    [all...]
15.9.5.6.js 25 Description: Date.prototype.getFullYear
31 Date: 12 november 1997
37 var TITLE = "Date.prototype.getFullYear()";
46 var now = (new Date()).valueOf();
66 "(new Date(NaN)).getFullYear()",
68 (new Date(NaN)).getFullYear() );
71 "Date.prototype.getFullYear.length",
73 Date.prototype.getFullYear.length );
78 "(new Date("+t+")).getFullYear()",
80 (new Date(t)).getFullYear() )
    [all...]
15.9.5.7.js 25 Description: Date.prototype.getUTCFullYear
31 Date: 12 november 1997
37 var TITLE = "Date.prototype.getUTCFullYear()";
46 var now = (new Date()).valueOf();
66 "(new Date(NaN)).getUTCFullYear()",
68 (new Date(NaN)).getUTCFullYear() );
71 "Date.prototype.getUTCFullYear.length",
73 Date.prototype.getUTCFullYear.length );
78 "(new Date("+t+")).getUTCFullYear()",
80 (new Date(t)).getUTCFullYear() )
    [all...]
15.9.5.8.js 25 Description: Date.prototype.getMonth
32 Date: 12 november 1997
38 var TITLE = "Date.prototype.getMonth()";
47 var now = (new Date()).valueOf();
67 "(new Date(NaN)).getMonth()",
69 (new Date(NaN)).getMonth() );
72 "Date.prototype.getMonth.length",
74 Date.prototype.getMonth.length );
82 "(new Date("+t+")).getMonth()",
84 (new Date(t)).getMonth() )
    [all...]
15.9.5.9.js 25 Description: Date.prototype.getUTCMonth
32 Date: 12 november 1997
38 var TITLE = "Date.prototype.getUTCMonth()";
47 var now = (new Date()).valueOf();
67 "(new Date(NaN)).getUTCMonth()",
69 (new Date(NaN)).getUTCMonth() );
72 "Date.prototype.getUTCMonth.length",
74 Date.prototype.getUTCMonth.length );
82 "(new Date("+t+")).getUTCMonth()",
84 (new Date(t)).getUTCMonth() )
    [all...]
15.9.3.8-3.js 24 ECMA Section: 15.9.3.8 The Date Constructor
25 new Date( value )
27 object is set to the original Date prototype object,
28 the one that is the initial valiue of Date.prototype.
31 set to "Date".
41 5. Parse Result(1) as a date, in exactly the same manner
43 this date.
47 Date: 28 october 1997
69 var DATE = 11;
79 var TITLE = "Date constructor: new Date( value )"
    [all...]
15.9.3.8-4.js 24 ECMA Section: 15.9.3.8 The Date Constructor
25 new Date( value )
27 object is set to the original Date prototype object,
28 the one that is the initial valiue of Date.prototype.
31 set to "Date".
41 5. Parse Result(1) as a date, in exactly the same manner
43 this date.
47 Date: 28 october 1997
69 var DATE = 11;
79 var TITLE = "Date constructor: new Date( value )"
    [all...]
15.9.3.8-5.js 24 ECMA Section: 15.9.3.8 The Date Constructor
25 new Date( value )
27 object is set to the original Date prototype object,
28 the one that is the initial valiue of Date.prototype.
31 set to "Date".
41 5. Parse Result(1) as a date, in exactly the same manner
43 this date.
47 Date: 28 october 1997
69 var DATE = 11;
79 var TITLE = "Date constructor: new Date( value )"
    [all...]
15.9.5.3-2.js 24 ECMA Section: 15.9.5.3-2 Date.prototype.valueOf
30 its this value is not a Date object. Therefore it cannot be transferred
34 Date: 12 november 1997
40 var TITLE = "Date.prototype.valueOf";
48 var now = (new Date()).valueOf();
64 "(new Date("+t+").valueOf()",
66 (new Date(t)).valueOf() );
69 "(new Date("+(t+1)+").valueOf()",
71 (new Date(t+1)).valueOf() );
74 "(new Date("+(t-1)+").valueOf()"
    [all...]
15.9.3.8-2.js 24 ECMA Section: 15.9.3.8 The Date Constructor
25 new Date( value )
27 object is set to the original Date prototype object,
28 the one that is the initial valiue of Date.prototype.
31 set to "Date".
41 5. Parse Result(1) as a date, in exactly the same manner
43 this date.
47 Date: 28 october 1997
69 var DATE = 11;
79 var TITLE = "Date constructor: new Date( value )"
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Condition.java 9 import java.util.Date;
386 * boolean aMethod(Date deadline) {
422 boolean awaitUntil(Date deadline) throws InterruptedException;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
Timestamp_ImplTest.java 26 import java.util.Date;
40 private Date now = new Date();
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
TimeTest.java 20 import java.util.Date;
40 // verify that date before 2050 encoded as UTCTime
41 byte[] enc = Time.ASN1.encode(new Date(march2006));
44 // verify that date after 2050 encoded as GeneralizedTime
45 enc = Time.ASN1.encode(new Date(march2332));
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
InvalidityDate.java 21 import java.util.Date;
26 * CRL Entry's Invalidity Date Extension (OID = 2.5.29.24).
35 /** invalidity date value */
36 private final Date date; field in class:InvalidityDate
43 date = (Date) ASN1.decode(encoding);
47 * Returns the invalidity date.
49 public Date getDate() {
50 return date;
    [all...]
  /libcore/luni/src/main/java/java/security/
Timestamp.java 22 import java.util.Date;
32 private Date timestamp;
44 * date and time.
51 public Timestamp(Date timestamp, CertPath signerCertPath) {
59 this.timestamp = new Date(timestamp.getTime());
67 * an instance of {@code Timestamp}, the two timestamps have an equal date
100 * Returns the date and time of this {@code Timestamp}.
102 * @return the date and time of this {@code Timestamp}.
104 public Date getTimestamp() {
105 return (Date) timestamp.clone()
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.5-3.js 34 Date: 12 november 1997
66 array[array.length] = new Date( TIME_2000 * Math.PI );
67 array[array.length] = new Date( TIME_2000 * 10 );
68 array[array.length] = new Date( TIME_1900 + TIME_1900 );
69 array[array.length] = new Date(0);
70 array[array.length] = new Date( TIME_2000 );
71 array[array.length] = new Date( TIME_1900 + TIME_1900 +TIME_1900 );
72 array[array.length] = new Date( TIME_1900 * Math.PI );
73 array[array.length] = new Date( TIME_1900 * 10 );
74 array[array.length] = new Date( TIME_1900 )
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/kerberos/serialization/
KerberosTicketTest.java 23 import java.util.Date;
54 private static final Date authTime = new Date(0);
56 private static final Date startTime = new Date(1);
58 private static final Date endTime = new Date(2);
60 private static final Date renewTill = new Date(3);

Completed in 1763 milliseconds

12 3 4 5 6 7 8 91011>>