HomeSort by relevance Sort by last modified time
    Searched refs:Date (Results 401 - 425 of 661) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.23-13.js 24 ECMA Section: 15.9.5.23 Date.prototype.setTime(time)
27 1. If the this value is not a Date object, generate a runtime error.
34 Date: 12 november 1997
40 var TITLE = "Date.prototype.setTime()";
43 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
55 // this daylight savings case fails -- need to fix date test functions
66 DateCase = new Date();
68 DateCase = new Date( startTime );
72 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d" ;
84 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() )
    [all...]
15.9.5.23-14.js 24 ECMA Section: 15.9.5.23 Date.prototype.setTime(time)
27 1. If the this value is not a Date object, generate a runtime error.
34 Date: 12 november 1997
40 var TITLE = "Date.prototype.setTime()";
43 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
53 // this daylight savings case fails -- need to fix date test functions
64 DateCase = new Date();
66 DateCase = new Date( startTime );
70 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d" ;
82 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() )
    [all...]
15.9.5.23-15.js 24 ECMA Section: 15.9.5.23 Date.prototype.setTime(time)
27 1. If the this value is not a Date object, generate a runtime error.
34 Date: 12 november 1997
40 var TITLE = "Date.prototype.setTime()";
42 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
60 DateCase = new Date();
62 DateCase = new Date( startTime );
66 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d" ;
78 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
87 testcases[item++] = new TestCase( SECTION, DateString+".getDate()", LocalDate.date, DateCase.getDate() )
    [all...]
15.9.5.23-16.js 24 ECMA Section: 15.9.5.23 Date.prototype.setTime(time)
27 1. If the this value is not a Date object, generate a runtime error.
34 Date: 12 november 1997
40 var TITLE = "Date.prototype.setTime()";
42 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
59 DateCase = new Date();
61 DateCase = new Date( startTime );
65 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d" ;
77 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
86 testcases[item++] = new TestCase( SECTION, DateString+".getDate()", LocalDate.date, DateCase.getDate() )
    [all...]
15.9.5.23-17.js 24 ECMA Section: 15.9.5.23 Date.prototype.setTime(time)
27 1. If the this value is not a Date object, generate a runtime error.
34 Date: 12 november 1997
40 var TITLE = "Date.prototype.setTime()";
42 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
58 DateCase = new Date();
60 DateCase = new Date( startTime );
64 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d" ;
76 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
85 testcases[item++] = new TestCase( SECTION, DateString+".getDate()", LocalDate.date, DateCase.getDate() )
    [all...]
15.9.5.23-18.js 24 ECMA Section: 15.9.5.23 Date.prototype.setTime(time)
27 1. If the this value is not a Date object, generate a runtime error.
34 Date: 12 november 1997
40 var TITLE = "Date.prototype.setTime()";
42 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
55 DateCase = new Date();
57 DateCase = new Date( startTime );
61 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d" ;
73 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
82 testcases[item++] = new TestCase( SECTION, DateString+".getDate()", LocalDate.date, DateCase.getDate() )
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLInputElement.idl 67 attribute Date valueAsDate setter raises(DOMException);
  /frameworks/base/services/java/com/android/server/am/
BroadcastRecord.java 32 import java.util.Date;
97 pw.println(new Date(dispatchClockTime));
  /frameworks/base/tests/backup/src/com/android/backuptest/
BackupTestActivity.java 45 import java.util.Date;
83 output.println(formatter.format(new Date()));
  /libcore/luni/src/main/java/java/security/
KeyStoreSpi.java 25 import java.util.Date;
78 * Returns the creation date of the entry with the given alias.
82 * @return the creation date, or {@code null} if the specified alias is not
85 public abstract Date engineGetCreationDate(String alias);
  /libcore/luni/src/main/java/java/util/
TimeZone.java 34 * Let classes like {@link Calendar} and {@link java.text.SimpleDateFormat} do the date
37 * <p>If you do need to do date computations manually, there are two common cases to take into
42 * must be used to determine whether or not daylight time applies to a given {@code Date}.
235 * date is within the daylight savings time period.
237 * @param time the date in milliseconds since January 1, 1970 00:00:00 UTC
240 if (inDaylightTime(new Date(time))) {
248 * date and time. The offset includes daylight savings time if the date
378 public abstract boolean inDaylightTime(Date time);
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 25 import java.util.Date;
276 cal.setTime(new Date(value));
282 modDate = cal.get(Calendar.DATE);
  /libcore/luni/src/main/java/libcore/net/http/
RequestHeaders.java 20 import java.util.Date;
258 public void setIfModifiedSince(Date date) {
262 String formattedDate = HttpDate.format(date);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore3Test.java 40 import java.util.Date;
208 public Date engineGetCreationDate(String arg0) {
KeyStoreSpiTest.java 46 import java.util.Date;
153 assertEquals("engineGetCreationDate(..) must return Date(0)", new Date(
  /packages/apps/Browser/src/com/android/browser/
SnapshotBar.java 37 import java.util.Date;
88 mDate = (TextView) findViewById(R.id.date);
190 mDate.setText(dateFormat.format(new Date(snapshot.getDateCreated())));
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
Log.java 22 import java.util.Date;
353 return String.format("%s %c/%s: %s\n", formatter.format(new Date()),
  /external/webkit/LayoutTests/fast/js/resources/
JSON-stringify.js 85 return jsonObject.stringify(new Date(0));
88 return jsonObject.stringify({toJSON: Date.prototype.toJSON});
92 return jsonObject.stringify({toJSON: Date.prototype.toJSON, toISOString: function(){ return "custom toISOString"; }});
95 return jsonObject.stringify({toJSON: Date.prototype.toJSON, toISOString: function(){ return {}; }});
99 return jsonObject.stringify({toJSON: Date.prototype.toJSON, toISOString: function(){ throw "An exception"; }});
103 var d = new Date(0);
109 var d = new Date(0);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ServerSocketTest.java 35 import java.util.Date;
228 Date start = new Date();
235 Date finish = new Date();
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
X509CertificateObject.java 24 import java.util.Date;
121 this.checkValidity(new Date());
125 Date date)
128 if (date.getTime() > this.getNotAfter().getTime()) // for other VM compatibility
133 if (date.getTime() < this.getNotBefore().getTime())
193 public Date getNotBefore()
198 public Date getNotAfter()
627 buf.append(" Start Date: ").append(this.getNotBefore()).append(nl);
628 buf.append(" Final Date: ").append(this.getNotAfter()).append(nl)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
MimeMessage.java 42 import java.util.Date;
66 private Date mSentDate;
74 // In MIME, en_US-like date format should be used. In other words "MMM" should be encoded to
76 // This conversion is used when generating outgoing MIME messages. Incoming MIME date
152 public Date getReceivedDate() throws MessagingException {
157 public Date getSentDate() throws MessagingException {
160 DateTimeField field = (DateTimeField)Field.parse("Date: "
161 + MimeUtility.unfoldAndDecode(getFirstHeader("Date")));
171 public void setSentDate(Date sentDate) throws MessagingException {
172 setHeader("Date", DATE_FORMAT.format(sentDate))
    [all...]
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 52 import java.util.Date;
86 Date sentDate = message.getSentDate();
87 Date internalDate = message.getInternalDate();
338 message.setSentDate(new Date(localMessage.mTimeStamp));
349 message.setInternalDate(new Date(localMessage.mServerTimeStamp));
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 230 public void setDate(int parameterIndex, java.sql.Date x)
467 public void setDate(int parameterIndex, java.sql.Date x, Calendar cal)
572 public void setDate(String parameterName, java.sql.Date val)
621 public void setDate(String parameterName, java.sql.Date val,
680 public java.sql.Date getDate(String parameterName) throws SQLException {
747 public java.sql.Date getDate(String parameterName, Calendar cal)
752 public java.sql.Date getDate(int parameterIndex, Calendar cal)
  /cts/tools/dasm/src/java_cup/
emit.java 5 import java.util.Date;
254 out.println("// " + new Date());
642 out.println("// " + new Date());
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 476 public void checkValidity(Date date)
497 public Date getNotAfter() {
501 public Date getNotBefore() {

Completed in 520 milliseconds

<<11121314151617181920>>