HomeSort by relevance Sort by last modified time
    Searched refs:Date (Results 126 - 150 of 662) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.23-2.js 25 Description: Date.prototype.setTime
27 1. If the this value is not a Date object, generate a runtime error.
34 Date: 12 november 1997
39 var TITLE = "Date.prototype.setTime()";
48 var now = (new Date()).valueOf();
54 addTestCase( new Date(now), test_times[j] );
59 "(new Date(NaN)).setTime()",
61 (new Date(NaN)).setTime() );
64 "Date.prototype.setTime.length",
66 Date.prototype.setTime.length )
    [all...]
15.9.3.8-1.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.1.1-1.js 40 Date: 7 july 1997
54 testcases[tc] = new TestCase( SECTION, "new Date("+M_SECS+")", CURRENT_YEAR, (new Date( M_SECS)).getUTCFullYear() );
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8IDBKeyCustom.cpp 52 return v8::Date::New(key->date());
  /external/apache-http/src/org/apache/http/impl/client/
BasicCookieStore.java 4 * $Date: 2008-05-03 03:39:28 -0700 (Sat, 03 May 2008) $
36 import java.util.Date;
94 if (!cookie.isExpired(new Date())) {
130 * that have expired by the specified {@link java.util.Date date}.
134 * @see Cookie#isExpired(Date)
136 public synchronized boolean clearExpired(final Date date) {
137 if (date == null) {
142 if (it.next().isExpired(date)) {
    [all...]
  /frameworks/base/core/tests/coretests/src/android/webkit/
WebkitTest.java 26 import java.util.Date;
39 Date date = new Date(); local
52 date.setTime(time);
53 c.setTime(date);
  /packages/apps/Camera/src/com/android/camera/panorama/
PanoUtil.java 20 import java.util.Date;
24 Date date = new Date(dateTaken); local
26 return dateFormat.format(date);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
TrackLabelProvider.java 26 import java.util.Date;
48 return new Date(time).toString();
54 return new Date(time).toString();
  /frameworks/base/core/java/android/net/http/
SslCertificate.java 37 import java.util.Date;
48 * SimpleDateFormat pattern for an ISO 8601 date
63 * Not-before date from the validity period
65 private final Date mValidNotBefore;
68 * Not-after date from the validity period
70 private final Date mValidNotAfter;
147 * @param validNotBefore The not-before date from the certificate
149 * @param validNotAfter The not-after date from the certificate
163 * @param validNotBefore The not-before date from the certificate validity period
164 * @param validNotAfter The not-after date from the certificate validity perio
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CRLImplTest.java 34 import java.util.Date;
91 private static Date thisUpdate = new Date();
92 private static Date nextUpdate;
94 nextUpdate = new Date(thisUpdate.getTime()+100000);
102 // Invalidity Date Extension
105 new InvalidityDate(new Date())));
123 private static Date revocationDate = new Date();
349 new Validity(new Date(), new Date())
    [all...]
  /cts/libs/vogar-expect/src/vogar/
Outcome.java 23 import java.util.Date;
36 private final Date date; field in class:Outcome
42 this.date = new Date();
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
49 this.date = date;
56 this.date = new Date()
    [all...]
  /libcore/luni/src/main/java/javax/security/cert/
X509Certificate.java 32 import java.util.Date;
147 public void checkValidity(Date date)
151 cert.checkValidity(date);
175 public Date getNotBefore() {
179 public Date getNotAfter() {
243 * Checks whether the certificate is valid at the specified date.
245 * @param date
246 * the date to check the validity against.
253 public abstract void checkValidity(Date date
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/kerberos/
KerberosTicketTest.java 23 import java.util.Date;
66 private static final Date authTime = new Date(AUTH_TIME);
70 private static final Date startTime = new Date(START_TIME);
74 private static final Date endTime = new Date(END_TIME);
76 private static final Date renewTill = new Date(3);
93 Date newAuthTime = new Date(AUTH_TIME)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
TBSCertList.java 28 import java.util.Date;
75 private final Date thisUpdate;
77 private final Date nextUpdate;
87 private final Date revocationDate;
95 Date revocationDate, Extensions crlEntryExtensions) {
109 public Date getRevocationDate() {
160 sb.append(prefix).append("Revocation Date: ").append(revocationDate);
179 (Date) values[1],
195 Name issuer, Date thisUpdate, Date nextUpdate
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DateFormatTest.java 25 import java.util.Date;
56 f1.format(new Date()).getClass() == String.class);
82 f2.format(new Date()).getClass() == String.class);
100 f2.format(new Date()).getClass() == String.class);
109 f2.format(new Date()).getClass() == String.class);
118 f2.format(new Date()).getClass() == String.class);
127 f2.format(new Date()).getClass() == String.class);
148 f2.format(new Date()).getClass() == String.class);
156 f2.format(new Date()).getClass() == String.class);
164 f2.format(new Date()).getClass() == String.class)
202 SimpleDateFormat date = (SimpleDateFormat) DateFormat.getDateInstance( local
251 SimpleDateFormat date = (SimpleDateFormat) DateFormat.getDateInstance( local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CRLSelector2Test.java 31 import java.util.Date;
283 * setDateAndTime(Date dateAndTime) method testing. Tests if CRLs with any
289 TestCRL crl = new TestCRL(new Date(200), new Date(300));
293 selector.setDateAndTime(new Date(200));
296 selector.setDateAndTime(new Date(250));
299 selector.setDateAndTime(new Date(300));
302 selector.setDateAndTime(new Date(150));
305 selector.setDateAndTime(new Date(350));
422 Date date = new Date(200) local
472 Date date = new Date(200); local
498 Date date = new Date(200); local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 25 import java.util.Date;
39 private Date now = new Date();
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStoreSpi.java 35 import java.util.Date;
58 public Date engineGetCreationDate(String alias) {
59 return new Date(0);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
Time.java 12 import java.util.Date;
41 * creates a time object from a given date - if the date is between 1950
46 Date date)
53 String d = dateF.format(date) + "Z";
97 public Date getDate()
112 throw new IllegalStateException("invalid date string: " + e.getMessage());
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
prettyload.js 70 startTime = Date.now();
81 if (Date.now() - startTime < MAX_DURATION) {
97 }, this.minDuration * MS_PER_SEC - (Date.now() - startTime));
  /libcore/luni/src/main/java/java/security/cert/
X509CRL.java 29 import java.util.Date;
191 public abstract Date getThisUpdate();
199 public abstract Date getNextUpdate();
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapString.java 27 import java.util.Date;
34 * Also, this class class may contain more arbitrary value like "BODY[HEADER.FIELDS ("DATE")]".
60 // en_US-like date format is used like "01-Jan-2009 11:20:39 -0800", so this should be
67 private Date mParsedDate;
122 * @return whether it can be parsed as a date using {@link #DATE_TIME_FORMAT}.
135 Log.w(Logging.LOG_TAG, getString() + " can't be parsed as a date.");
141 * @return value it can be parsed as a {@link Date}, or null otherwise.
143 public final Date getDateOrNull() {
  /packages/apps/Exchange/src/com/android/exchange/utility/
FileLogger.java 25 import java.util.Date;
72 Date d = new Date();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/
X509CertificateTest.java 29 import java.util.Date;
166 Date date = new Date(); local
167 Date nb_date = tbt_cert.getNotBefore();
168 Date na_date = tbt_cert.getNotAfter();
172 date.compareTo(na_date) > 0);
174 date.compareTo(nb_date) < 0);
177 date.compareTo(na_date) > 0);
180 date.compareTo(nb_date) < 0)
193 Date[] date = new Date[4]; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERUTCTime.java 6 import java.util.Date;
78 throw new IllegalArgumentException("invalid date string: " + e.getMessage());
83 * base constructer from a java.util.date object
86 Date time)
112 * return the time as a date based on whatever a 2 digit year will return. For
115 * @return the resulting date
116 * @exception ParseException if the date string cannot be parsed.
118 public Date getDate()
127 * return the time as an adjusted date
130 * @return a date in the range of 1950 to 2049
    [all...]

Completed in 725 milliseconds

1 2 3 4 56 7 8 91011>>