HomeSort by relevance Sort by last modified time
    Searched refs:Date (Results 126 - 150 of 890) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Exchange/src/com/android/exchange/utility/
FileLogger.java 24 import java.util.Date;
71 Date d = new Date();
  /external/chromium_org/tools/perf/page_sets/tough_scrolling_cases/
busy.js 6 for (var d = Date.now(); Date.now() - d < millis; ) { }
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
Offer.java 3 * $Date$
26 import java.util.Date;
47 private Date expiresDate;
62 * @param expiresDate the date at which this offer expires.
69 String userJID, String workgroupName, Date expiresDate,
134 * The date when the offer will expire. The agent must {@link #accept()}
135 * the offer before the expiration date or the offer will lapse and be
139 * @return the date at which this offer expires.
141 public Date getExpiresDate() {
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
QueueOverview.java 3 * $Date$
28 import java.util.Date;
46 private Date oldestEntry;
65 void setOldestEntry(Date oldestEntry) {
69 public Date getOldestEntry() {
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DocumentaryFilter.java 31 import java.util.Date;
84 Date date = new Date(); local
85 mRandom = new Random(new Date().getTime());
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Time.java 52 if (((java.util.Date) object).getTime() < JAN_01_2050) {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 27 import java.util.Date;
39 private Date now = new Date();
77 Timestamp two1 = new Timestamp(new Date(9999), cpath);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/
DateTime.java 26 import java.util.Date;
33 private final Date date; field in class:DateTime
44 this.date = convertToDate(year, month, day, hour, minute, second, timeZone);
69 public static Date convertToDate(int year, int month, int day, int hour, int minute, int second, int timeZone) {
82 public Date getDate() {
83 return date;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/
X509CertificateTest.java 29 import java.util.Date;
166 Date date = new Date(); local
167 Date nb_date = tbt_cert.getNotBefore();
168 Date na_date = tbt_cert.getNotAfter();
172 date.compareTo(na_date) > 0);
174 date.compareTo(nb_date) < 0);
177 date.compareTo(na_date) > 0);
180 date.compareTo(nb_date) < 0)
193 Date[] date = new Date[4]; local
    [all...]
  /external/chromium_org/v8/src/extensions/i18n/
overrides.js 45 // number and date format instances. They'll be created as needed.
128 * Returns actual formatted date or fails if date parameter is invalid.
130 function toLocaleDateTime(date, locales, options, required, defaults, service) {
131 if (!(date instanceof Date)) {
132 throw new TypeError('Method invoked on an object that is not Date.');
135 if (isNaN(date)) {
136 return 'Invalid Date';
144 return formatDate(dateFormat, date);
    [all...]
  /libcore/luni/src/main/java/java/text/
DateFormat.java 22 import java.util.Date;
44 * System.out.println(df.format(new Date(0)));
46 * System.out.println(df.format(new Date(0)));
70 * representing a date.
125 * to the {@link Calendar#DATE} field.
236 * Compares this date format with the specified object and indicates if they
240 * the object to compare with this date format.
242 * it has the same properties as this date format; {@code false}
266 * Formats the specified object as a string using the pattern of this date
275 * the source object to format, must be a {@code Date} or
553 Date date = parse(string, position); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldDateFormatTest.java 25 import java.util.Date;
40 public Date parse(String source, ParsePosition pos) {
46 public StringBuffer format(Date date, StringBuffer toAppendTo,
84 * java.text.DateFormat#format(java.util.Date) Test of method
85 * java.text.DateFormat#format(java.util.Date).
91 Date current = new Date();
94 assertTrue("Incorrect date format", sdf.format(current).equals(dtf));
109 Date current = new Date()
219 Date date = format.parse(format.format(current).toString()); local
252 Date date = format.parse(format.format(current).toString()); local
280 Date date = format.parse(format.format(current).toString()); local
294 Date date = format.parse(format.format(current).toString()); local
308 Date date = format.parse(format.format(current).toString()); local
327 Date date = format.parse(format.format(current).toString()); local
353 Date date = format.parse(formattedCurrent); local
    [all...]
  /frameworks/base/core/java/android/net/http/
SslCertificate.java 37 import java.util.Date;
48 * SimpleDateFormat pattern for an ISO 8601 date
63 * Not-before date from the validity period
65 private final Date mValidNotBefore;
68 * Not-after date from the validity period
70 private final Date mValidNotAfter;
147 * @param validNotBefore The not-before date from the certificate
149 * @param validNotAfter The not-after date from the certificate
163 * @param validNotBefore The not-before date from the certificate validity period
164 * @param validNotAfter The not-after date from the certificate validity perio
    [all...]
  /libcore/luni/src/main/java/java/util/
Date.java 35 * Use {@link java.text.DateFormat} to format a {@code Date} for display to a human.
36 * Use {@link Calendar} to break down a {@code Date} if you need to extract fields such
37 * as the current month or day of week, or to construct a {@code Date} from a broken-down
41 * allow you to interpret a {@code Date} in a given time zone.
45 public class Date implements Serializable, Cloneable, Comparable<Date> {
50 private static final int CREATION_YEAR = new Date().getYear();
55 * Initializes this {@code Date} instance to the current time.
57 public Date() {
62 * Constructs a new {@code Date} initialized to midnight in the default {@code TimeZone} o
387 int year = -1, month = -1, date = -1; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CRLEntryImplTest.java 25 import java.util.Date;
63 new Date(),
71 // demand absent Invalidity Date extension
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateListTest.java 32 import java.util.Date;
66 private static Date thisUpdate = new Date();
67 private static Date nextUpdate;
69 nextUpdate = new Date(thisUpdate.getTime()+100000);
73 // Invalidity Date Extension (rfc 3280)
75 ASN1GeneralizedTime.getInstance().encode(new Date()));
108 private static Date revocationDate = new Date();
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThread.java 4 * $Date: 2008-04-17 11:32:32 -0700 (Thu, 17 Apr 2008) $
34 import java.util.Date;
137 public boolean await(Date deadline)
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509CRLEntryHolder.java 4 import java.util.Date;
49 * Return the date on which the certificate associated with this CRLEntry was revoked.
51 * @return the revocation date for the revoked certificate.
53 public Date getRevocationDate()
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
math-cordic.js 84 var start = new Date();
90 var end = new Date();
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
math-cordic.js 84 var start = new Date();
90 var end = new Date();
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
math-cordic.js 89 var start = new Date();
95 var end = new Date();
  /external/chromium_org/tools/idl_parser/test_parser/
typedef_web.idl 138 * PrimitiveType(Date)
140 typedef Date MyDate;
  /external/jsilver/src/org/clearsilver/
HDF.java 21 import java.util.Date;
97 * Export a date to a clearsilver tree using a specified timezone
99 void exportDate(String hdfName, TimeZone timeZone, Date date);
102 * Export a date to a clearsilver tree using a specified timezone
  /external/smack/src/org/jivesoftware/smackx/packet/
DelayInfo.java 16 import java.util.Date;
57 public Date getStamp()
  /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()) }));

Completed in 853 milliseconds

1 2 3 4 56 7 8 91011>>