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

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.3.2-5.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...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.2.js 37 Date: 14 july 1997
93 testcases[tc++] = new TestCase( SECTION, "Boolean(new Date())", true, Boolean(new Date()) );
94 testcases[tc++] = new TestCase( SECTION, "Boolean(new Date(0))", true, Boolean(new Date(0)) );
  /external/webkit/Source/WebCore/inspector/front-end/
CookieParser.js 176 // Check for absence of explicity max-age or expiry date instead.
192 return this._attributes.expires ? new Date(this._attributes.expires) :
193 (this._attributes["max-age"] ? new Date(requestDate.getTime() + 1000 * this._attributes["max-age"]) : null);
  /frameworks/base/core/java/com/android/internal/os/
SamplingProfilerIntegration.java 31 import java.util.Date;
104 Log.e(TAG, "SamplingProfilerIntegration already started at " + new Date(startMillis));
  /frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
BatteryWaster.java 33 import java.util.Date;
161 mLog.setText(mLog.getText() + "\n" + mDateFormat.format(new Date()) + ": " + s);
  /libcore/luni/src/main/java/java/sql/
PreparedStatement.java 307 * java.sql.Date} value.
313 * a {@code java.sql.Date} to which the parameter at {@code
318 public void setDate(int parameterIndex, Date theDate) throws SQLException;
322 * java.sql.Date} value, using a supplied {@code Calendar} to map the Date.
324 * to compute the SQL {@code DATE} in the database - without the supplied
332 * a {@code java.sql.Date} to which the parameter at {@code
335 * a {@code Calendar} to use to construct the SQL {@code DATE}
339 * @see Date
342 public void setDate(int parameterIndex, Date theDate, Calendar cal
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
XMLFormatter.java 21 import java.util.Date;
52 // format to date
53 String date = MessageFormat.format("{0, date} {0, time}", new Object[] { new Date(time) }); local
58 append(sb, 1, "date", date);
  /libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java 26 import java.util.Date;
79 return sdf.format(new Date(0));
  /libcore/luni/src/test/java/libcore/java/util/
OldTimeZoneTest.java 21 import java.util.Date;
41 public boolean inDaylightTime(Date date) {
  /libcore/luni/src/test/java/tests/api/java/util/
SimpleTimeZoneTest.java 21 import java.util.Date;
397 * java.util.SimpleTimeZone#inDaylightTime(java.util.Date)
401 // java.util.SimpleTimeZone.inDaylightTime(java.util.Date)
416 Date date = new Date(gc.getTime().getTime() + 1000); local
418 .inDaylightTime(date));
422 date = new Date(gc.getTime().getTime() - 1000);
424 .inDaylightTime(date));
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapStringTest.java 30 import java.util.Date;
95 final ImapString date = new ImapSimpleString("01-Jan-2009 11:34:56 -0100"); local
97 assertTrue(date.isDate());
98 Date d = date.getDateOrNull();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpImage.java 34 import java.util.Date;
153 details.addDetail(MediaDetails.INDEX_DATETIME, formater.format(new Date(mDateTaken)));
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
SaveCopyTask.java 35 import java.sql.Date;
75 new Date(System.currentTimeMillis()));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStoreTest.java 41 import java.util.Date;
284 public void checkValidity(Date p) throws CertificateExpiredException, CertificateNotYetValidException {}
297 public Date getNotBefore() {
300 public Date getNotAfter() {
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 24 import java.util.Date;
213 /** Export a date to a clearsilver tree using a specified timezone */
214 public void exportDate(String hdfname, TimeZone timeZone, Date date) {
220 cal.setTime(date);
262 /** Export a date to a clearsilver tree using a specified timezone */
274 Date date = new Date((long)tt * 1000);
276 exportDate(hdfname, timeZone, date);
    [all...]
  /external/v8/test/mjsunit/
fuzz-accessors.js 48 new Date(),
56 var someDate = new Date();
  /external/v8/test/mjsunit/regress/
regress-995.js 44 if (%_ClassOf(value) === 'Date') {
48 g(new Date());
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/NativeObjects/
15-1.js 36 Date: 28 october 1997
59 array[item++] = new TestCase( SECTION, "Date.prototype.__proto__", Object.prototype, Date.prototype.__proto__ );
70 array[item++] = new TestCase( SECTION, "Date.prototype.__proto__ == Object.prototype", true, Date.prototype.__proto__ == Object.prototype );
15-2.js 36 Date: 28 october 1997
57 array[item++] = new TestCase( SECTION, "Date.__proto__", Function.prototype, Date.__proto__ );
  /external/webkit/Source/WebCore/html/
DateComponents.h 40 // A DateComponents instance represents one of the following date and time combinations:
42 // * Date type: year-month-day
112 // For Date type. Updates m_year, m_month and m_monthDay.
189 Date,
  /frameworks/base/core/tests/coretests/src/com/android/internal/net/
DomainNameValidatorTest.java 41 import java.util.Date;
277 public void checkValidity(Date date) throws CertificateExpiredException,
303 public Date getNotAfter() {
308 public Date getNotBefore() {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ServerHello.java 67 long gmt_unix_time = new java.util.Date().getTime() / 1000;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStoreTest.java 42 import java.util.Date;
283 public void checkValidity(Date p) throws CertificateExpiredException, CertificateNotYetValidException {}
296 public Date getNotBefore() {
299 public Date getNotAfter() {
  /packages/apps/Contacts/src/com/android/contacts/editor/
EventFieldEditorView.java 42 import java.util.Date;
55 * Default string to show when there is no date selected yet.
169 final Date date2 = kind.dateFormatWithoutYear.parse(oldValue, position);
171 // Don't understand the date, lets not change it
185 * Prepare dialog for entering a date
207 Date date1 = kind.dateFormatWithYear.parse(oldValue, position);
218 final Date date2 = kind.dateFormatWithoutYear.parse(oldValue, position);
219 // Don't understand the date, lets not change it
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
PKIXParameters_ImplTest.java 35 import java.util.Date;
190 p1.setDate(new Date(555L));
253 p[i].setDate(new Date(555L));

Completed in 1281 milliseconds

<<11121314151617181920>>