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

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.4.3.js 35 Date: 28 october 1997
62 var mydate = new Date();
100 "mydate = new Date(); mydate.valueOf = Object.prototype.valueOf; mydate.valueOf()",
  /external/webkit/Tools/Scripts/
update-webkit-dependency 39 use HTTP::Date qw(str2time);
74 print "Checking Last-Modified date of $zipFile...\n";
79 print STDERR "Couldn't check Last-Modified date of new $zipFile.\n";
83 print STDERR "Unable to check Last-Modified date and no version of $file to fall back to.\n";
99 print "Current $file is up to date\n";
  /frameworks/base/core/java/android/webkit/
DateSorter.java 23 import java.util.Date;
81 * date bin this date belongs to
92 * @param index date bin index as returned by getIndex()
102 * @param index date bin index as returned by getIndex()
103 * @return date boundary at given index
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
Summarizer.java 37 import java.util.Date;
209 private Date mDate;
316 mDate = new Date();
331 txt.append("Date: " + dateFormat.format(mDate) + "\n");
408 html.append("<h3>" + "Date: " + dateFormat.format(new Date()) + "</h3>");
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
MessageFormatTest.java 35 import java.util.Date;
76 "Date: {0,date} Currency: {1, number, currency} Integer: {2, number, integer}",
94 "abc {4,time} def {3,date} ghi {2,number} jkl {1,choice,0#low|1#high} mnop {0}");
102 assertTrue("Wrong date format", formats[1].equals(DateFormat
110 Date date = new Date(); local
114 date, date }, buffer, pos)
174 Date date = new Date(); local
336 SimpleDateFormat date = (SimpleDateFormat) DateFormat.getTimeInstance(); local
375 Date date = new Date(); local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKKeyStore.java 27 import java.util.Date;
102 Date date = new Date(); field in class:JDKKeyStore.StoreEntry
165 Date date,
170 this.date = date;
177 Date date,
701 Date date = new Date(dIn.readLong()); local
    [all...]
CertPathValidatorUtilities.java 29 import java.util.Date;
287 protected static Date getValidDate(PKIXParameters paramsPKIX)
289 Date validDate = paramsPKIX.getDate();
293 validDate = new Date();
    [all...]
X509CRLEntryObject.java 7 import java.util.Date;
31 * ReasonCode Hode Instruction Code Invalidity Date Certificate Issuer
220 public Date getRevocationDate()
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 47 import java.util.Date;
206 public void testParseEmailDateTimeToMillis(String date) {
207 // Format for email date strings is 2010-02-23T16:00:00.000Z
221 public void testParseDateTimeToMillis(String date) {
222 // Format for calendar date strings is 20100223T160000000Z
381 // These next two fields should have a date only
382 assertEquals("20100412", vevent.get("DTSTART;VALUE=DATE"));
383 assertEquals("20100413", vevent.get("DTEND;VALUE=DATE"));
443 // These next two fields should exist (without the VALUE=DATE suffix)
446 assertNull(vevent.get("DTSTART;VALUE=DATE"));
825 Date date = new Date(entityValues.getAsLong(Events.DTSTART)); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 29 import java.sql.Date;
61 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
    [all...]
OldResultSetGetterTests.java 23 import java.sql.Date;
132 java.sql.Date.class, // Types.DATE,
135 java.sql.Date.class, // types datetime, not a JDBC 1.0 type
166 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
412 Date input = new Date(testCal.getTimeInMillis());
413 Date d = res.getDate(15);
432 Date input = new Date(testCal.getTimeInMillis())
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 61 import java.util.Date;
218 // Internal structure for storing a time zone date from a SYSTEMTIME structure
219 // This date represents either the start or the end time for DST
312 * @return a GregorianCalendar with the given time zone and date
338 Date date = null; local
343 date = new Date(checkTime);
344 boolean inDaylightTime = tz.inDaylightTime(date);
396 int date; field in class:CalendarUtilities.RRule
447 int date = calendar.get(Calendar.DAY_OF_MONTH); local
548 Date date = new Date(startTime); local
1499 Date date = new Date(entityValues.getAsLong(Events.DTSTART)); local
1763 Date date = new Date(entityValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME)); local
    [all...]
  /bionic/libc/tools/zoneinfo/
ZoneInfo.java 19 import java.util.Date;
206 public boolean inDaylightTime(Date when) {
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/
AddVoicemailActivity.java 46 import java.util.Date;
157 mTime.setText(DATE_FORMATTER.format(new Date()));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStore3Test.java 41 import java.util.Date;
225 public Date engineGetCreationDate(String arg0) {
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JHdf.java 31 import java.util.Date;
150 public void exportDate(String hdfName, TimeZone timeZone, Date date) {
  /external/mesa3d/docs/
MESA_copy_sub_buffer.spec 19 Last Modified Date: 12 January 2009
MESA_pixmap_colormap.spec 19 Last Modified Date: 8 June 2000
MESA_set_3dfx_mode.spec 19 Last Modified Date: 8 June 2000
  /external/v8/test/mjsunit/regress/
regress-1207276.js 32 delete Date;
regress-399.js 30 var date = new Date(1.009804e12);
31 var year = String(date).match(/.*(200\d)/)[1];
32 assertEquals(year, date.getFullYear());
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.23-1.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()";
44 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
57 // this daylight savings case fails -- need to fix date test functions
62 // this daylight savings case fails -- need to fix date test functions
73 DateCase = new Date();
75 DateCase = new Date( startTime );
79 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d"
    [all...]
15.9.5.23-10.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()";
46 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
56 // this daylight savings case fails -- need to fix date test functions
61 // this daylight savings case fails -- need to fix date test functions
72 DateCase = new Date();
74 DateCase = new Date( startTime );
78 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d"
    [all...]
15.9.5.23-11.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 // this daylight savings case fails -- need to fix date test functions
60 // this daylight savings case fails -- need to fix date test functions
71 DateCase = new Date();
73 DateCase = new Date( startTime );
77 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d"
    [all...]
15.9.5.23-12.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()";
46 writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
53 // this daylight savings case fails -- need to fix date test functions
58 // this daylight savings case fails -- need to fix date test functions
69 DateCase = new Date();
71 DateCase = new Date( startTime );
75 var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d"
    [all...]

Completed in 1345 milliseconds

<<11121314151617181920>>