HomeSort by relevance Sort by last modified time
    Searched refs:Date (Results 151 - 175 of 535) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Array/
regress-101964.js 20 * Date: 27 September 2001
49 var start = new Date();
65 return new Date() - startTime;
  /external/webkit/SunSpider/tests/sunspider-0.9/
math-cordic.js 84 var start = new Date();
90 var end = new Date();
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
math-cordic.js 84 var start = new Date();
90 var end = new Date();
  /external/webkit/WebKitTools/Scripts/
roll-over-ChangeLogs 27 require 'date'
34 date_suffix = Date.today.strftime("-%Y-%m-%d")
  /external/webkit/WebKitTools/iExploder/tools/
osx_last_crash.rb 13 date=''
19 if line =~ /^Date.*(200.*)/
20 date = $1
40 puts File.basename(filename) + " - " + date
  /libcore/luni/src/main/java/java/util/logging/
SimpleFormatter.java 23 import java.util.Date;
48 sb.append(MessageFormat.format("{0, date} {0, time} ",
49 new Object[] { new Date(r.getMillis()) }));
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 4 * $Date: 2008-05-22 11:26:53 -0700 (Thu, 22 May 2008) $
34 import java.util.Date;
139 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
144 * @return Expiration {@link Date}, or <tt>null</tt>.
146 * @see #setExpiryDate(java.util.Date)
149 public Date getExpiryDate() {
154 * Sets expiration date.
159 * @param expiryDate the {@link Date} after which this cookie is no longer valid.
164 public void setExpiryDate (Date expiryDate) {
291 * @param date Current tim
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.3.1-2.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.3.1-4.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.3.2-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
68 var DATE = 11;
77 var TITLE = "Date( year, month, date, hours, minutes, seconds )"
    [all...]
15.9.3.2-3.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
68 var DATE = 11;
77 var TITLE = "Date( year, month, date, hours, minutes, seconds )"
    [all...]
15.9.5.11-2.js 25 Description: Date.prototype.getUTCDate
32 Date: 12 november 1997
38 var TITLE = "Date.prototype.getUTCDate()";
57 "(new Date("+t+")).getUTCDate()",
59 (new Date(t)).getUTCDate() );
62 "(new Date("+(t+1)+")).getUTCDate()",
64 (new Date(t+1)).getUTCDate() );
67 "(new Date("+(t-1)+")).getUTCDate()",
69 (new Date(t-1)).getUTCDate() );
72 "(new Date("+(t-TZ_ADJUST)+")).getUTCDate()"
    [all...]
15.9.5.11-3.js 25 Description: Date.prototype.getUTCDate
32 Date: 12 november 1997
38 var TITLE = "Date.prototype.getUTCDate()";
56 "(new Date("+t+")).getUTCDate()",
58 (new Date(t)).getUTCDate() );
61 "(new Date("+(t+1)+")).getUTCDate()",
63 (new Date(t+1)).getUTCDate() );
66 "(new Date("+(t-1)+")).getUTCDate()",
68 (new Date(t-1)).getUTCDate() );
71 "(new Date("+(t-TZ_ADJUST)+")).getUTCDate()"
    [all...]
15.9.5.11-4.js 25 Description: Date.prototype.getUTCDate
32 Date: 12 november 1997
38 var TITLE = "Date.prototype.getUTCDate()";
56 "(new Date("+t+")).getUTCDate()",
58 (new Date(t)).getUTCDate() );
61 "(new Date("+(t+1)+")).getUTCDate()",
63 (new Date(t+1)).getUTCDate() );
66 "(new Date("+(t-1)+")).getUTCDate()",
68 (new Date(t-1)).getUTCDate() );
71 "(new Date("+(t-TZ_ADJUST)+")).getUTCDate()"
    [all...]
15.9.5.11-5.js 25 Description: Date.prototype.getUTCDate
32 Date: 12 november 1997
38 var TITLE = "Date.prototype.getUTCDate()";
56 "(new Date("+t+")).getUTCDate()",
58 (new Date(t)).getUTCDate() );
61 "(new Date("+(t+1)+")).getUTCDate()",
63 (new Date(t+1)).getUTCDate() );
66 "(new Date("+(t-1)+")).getUTCDate()",
68 (new Date(t-1)).getUTCDate() );
71 "(new Date("+(t-TZ_ADJUST)+")).getUTCDate()"
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 32 import java.util.Date;
44 private Date now = new Date();
54 args = {java.util.Date.class, java.security.cert.CertPath.class}
94 Timestamp two1 = new Timestamp(new Date(9999), cpath);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertImpl.java 43 import java.util.Date;
152 * @see java.security.cert.X509Certificate#checkValidity(Date)
155 public void checkValidity(Date date)
157 checkValidity(date.getTime());
163 throw new CertificateNotYetValidException("current time: " + new Date(time)
164 + ", validation time: " + new Date(getNotBeforeInternal()));
167 throw new CertificateExpiredException("current time: " + new Date(time)
168 + ", expiration time: " + new Date(getNotAfterInternal()));
238 public Date getNotBefore()
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 32 import java.util.Date;
41 // Date: 12-18-2008 5:30AM
123 args = {CharSequence.class, Date.class}
139 Date date = new Date(YEAR_FROM_1900, MONTH, DAY, HOUR, MINUTE); local
140 String source = dateFormat.format(date);
141 Date parseDate = dateFormat.parse(source);
142 assertEquals(date.getYear(), parseDate.getYear());
143 assertEquals(date.getMonth(), parseDate.getMonth())
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509V2AttributeCertificate.java 28 import java.util.Date;
41 private Date notBefore;
42 private Date notAfter;
95 public Date getNotBefore()
100 public Date getNotAfter()
128 this.checkValidity(new Date());
132 Date date)
135 if (date.after(this.getNotAfter()))
140 if (date.before(this.getNotBefore())
    [all...]
  /frameworks/base/media/java/android/media/
Metadata.java 25 import java.util.Date;
74 public static final int DATE = 9; // Date
149 private Date mTime;
153 public TimedText(Date time, int duration, String text) {
361 public Date getDate(final int key) {
367 return new Date(timeSinceEpoch);
379 final Date startTime = new Date(mParcel.readLong()); // epoch
  /libcore/luni/src/main/java/java/security/cert/
X509CRLSelector.java 26 import java.util.Date;
243 * date and the {@code nextUpdate} value must be after the specified date.
246 * the date to search for valid CRL's or {@code null} to not
247 * check the date.
249 public void setDateAndTime(Date dateAndTime) {
336 * date and the {@code nextUpdate} value must be after the returned date.
338 * @return the date to search for valid CRL's or {@code null} if the date i
    [all...]
  /libcore/luni/src/main/java/java/text/
DateFormat.java 24 import java.util.Date;
30 * An abstract class for date/time formatting subclasses which formats and
31 * parses dates or time in a language-independent manner. The date/time
33 * (i.e., date -> text), parsing (text -> date), and normalization. The date is
34 * represented as a {@code Date} object or as the milliseconds since January 1,
37 * DateFormat provides many class methods for obtaining default date/time
47 * To format a date for the current Locale, use one of the static factory
90 * Use {@code getDateInstance} to get the normal date format for a country
624 Date date = parse(string, position); local
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 41 import java.util.Date;
54 private Date mLastUpdated;
77 // update the last synced date.
78 mLastUpdated = new Date();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStoreSpi.java 37 import java.util.Date;
64 public Date engineGetCreationDate(String alias) {
65 return new Date(0);
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
FileFilterUtils.java 22 import java.util.Date;
196 * the specified cutoff date.
202 public static IOFileFilter ageFileFilter(Date cutoffDate) {
207 * Returns a filter that filters files based on a cutoff date.
214 public static IOFileFilter ageFileFilter(Date cutoffDate, boolean acceptOlder) {

Completed in 7816 milliseconds

1 2 3 4 5 67 8 91011>>