/frameworks/base/core/java/android/webkit/ |
DateSorter.java | 23 import java.util.Date; 89 * date bin this date belongs to 100 * @param index date bin index as returned by getIndex() 110 * @param index date bin index as returned by getIndex() 111 * @return date boundary at given index
|
/packages/apps/Exchange/src/com/android/exchange/utility/ |
CalendarUtilities.java | 59 import java.util.Date; 231 // Internal structure for storing a time zone date from a SYSTEMTIME structure 232 // This date represents either the start or the end time for DST 325 * @return a GregorianCalendar with the given time zone and date 351 Date date = null; local 356 date = new Date(checkTime); 357 boolean inDaylightTime = tz.inDaylightTime(date); 409 int date; field in class:CalendarUtilities.RRule 460 int date = calendar.get(Calendar.DAY_OF_MONTH); local 561 Date date = new Date(startTime); local 1633 Date date = new Date(getLocalAllDayCalendarTime(startTime, TimeZone.getDefault())); local 1879 Date date = new Date(entityValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME)); local [all...] |
/cts/tests/tests/keystore/src/android/keystore/cts/ |
AndroidKeyPairGeneratorTest.java | 42 import java.util.Date; 80 private static final Date NOW = new Date(NOW_MILLIS - (NOW_MILLIS % 1000L)); 83 private static final Date NOW_PLUS_10_YEARS = new Date(NOW.getYear() + 10, 0, 1); 404 AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end) 461 assertDateEquals("The notBefore date should be the one passed into the params", start, 464 assertDateEquals("The notAfter date should be the one passed into the params", end, 560 private static void assertDateEquals(String message, Date date1, Date date2) throws Exception [all...] |
/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/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/ |
BcKeyStoreSpi.java | 27 import java.util.Date; 102 Date date = new Date(); field in class:BcKeyStoreSpi.StoreEntry 165 Date date, 170 this.date = date; 177 Date date, 694 Date date = new Date(dIn.readLong()); local [all...] |
/frameworks/base/keystore/tests/src/android/security/ |
AndroidKeyPairGeneratorTest.java | 38 import java.util.Date; 62 private static final Date NOW = new Date(NOW_MILLIS - (NOW_MILLIS % 1000L)); 65 private static final Date NOW_PLUS_10_YEARS = new Date(NOW.getYear() + 10, 0, 1); 466 AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end) 523 assertDateEquals("The notBefore date should be the one passed into the params", start, 526 assertDateEquals("The notAfter date should be the one passed into the params", end, 539 private static void assertDateEquals(String message, Date date1, Date date2) throws Exception [all...] |
/packages/apps/Exchange/tests/src/com/android/exchange/utility/ |
CalendarUtilitiesTests.java | 47 import java.util.Date; 216 public void testParseEmailDateTimeToMillis(String date) { 217 // Format for email date strings is 2010-02-23T16:00:00.000Z 231 public void testParseDateTimeToMillis(String date) { 232 // Format for calendar date strings is 20100223T160000000Z 391 // These next two fields should have a date only 392 assertEquals("20100412", vevent.get("DTSTART;VALUE=DATE")); 393 assertEquals("20100413", vevent.get("DTEND;VALUE=DATE")); 453 // These next two fields should exist (without the VALUE=DATE suffix) 456 assertNull(vevent.get("DTSTART;VALUE=DATE")); 798 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...] |
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
SensorCtsHelper.java | 35 import java.util.Date; 174 dateFormat.format(new Date()));
|
/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/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ |
CertUtils.java | 9 import java.util.Date; 203 static Date recoverDate(ASN1GeneralizedTime time) 211 throw new IllegalStateException("unable to recover date: " + e.getMessage());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
X509CRLEntryObject.java | 7 import java.util.Date; 31 * ReasonCode Hode Instruction Code Invalidity Date Certificate Issuer 232 public Date getRevocationDate()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
CertPathValidatorUtilities.java | 30 import java.util.Date; 284 protected static Date getValidDate(PKIXParameters paramsPKIX) 286 Date validDate = paramsPKIX.getDate(); 290 validDate = new Date(); [all...] |
X509CRLEntryObject.java | 7 import java.util.Date; 31 * ReasonCode Hode Instruction Code Invalidity Date Certificate Issuer 232 public Date getRevocationDate()
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/ |
bg.js | 43 callback(new Date(entries[i].date + " UTC")); 106 updateTimeBadge(Date.now() - lastChangeTime); 113 lastChangeTime = Date.now() - pollFrequencyInMs / 2; 115 updateTimeBadge(Date.now() - lastChangeTime);
|
/external/chromium_org/remoting/webapp/ |
log_to_server.js | 61 this.sessionStartTime = new Date().getTime(); 75 (new Date().getTime() - this.sessionStartTime) / 1000.0); 205 this.sessionIdGenerationTime = new Date().getTime(); 229 (new Date().getTime() - this.sessionIdGenerationTime >=
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/v8/test/mjsunit/regress/ |
regress-1207276.js | 32 delete Date;
|
regress-399.js | 30 var date = new Date(1.009804e12); 31 var year = Number(String(date).match(/.*(200\d)/)[1]); 32 assertEquals(year, date.getFullYear());
|
/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
|