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

<<11121314151617181920>>

  /external/webkit/Source/WebCore/loader/
FTPDirectoryParser.cpp 48 QDate date(input.date());
49 result.tm_year = date.year() - 1900;
50 result.tm_mon = date.month();
51 result.tm_mday = date.day();
52 result.tm_wday = date.dayOfWeek();
53 result.tm_yday = date.dayOfYear();
349 isASCIIDigit(*tokens[2]) && /* date */
601 * Filename FileType Fm Format Lrecl Records Blocks Date Time
680 /* There may be Y2K bugs in the date. Don't simplify t
    [all...]
  /external/tcpdump/
smbutil.c 32 * interpret a 32 bit dos packed date/time to some parameters
35 interpret_dos_date(u_int32_t date, struct tm *tp)
39 p0 = date & 0xFF;
40 p1 = ((date & 0xFF00) >> 8) & 0xFF;
41 p2 = ((date & 0xFF0000) >> 16) & 0xFF;
42 p3 = ((date & 0xFF000000) >> 24) & 0xFF;
54 * create a unix date from a dos date
73 * create a unix date from a dos date
    [all...]
  /packages/apps/Phone/src/com/android/phone/
NotificationMgr.java 69 Calls.DATE,
252 * Makes sure phone-related notifications are up to date on a
300 public long date; field in class:NotificationMgr.QueryHandler.NotificationInfo
367 notifyMissedCall(n.name, n.number, n.label, n.date);
386 n.date = cursor.getLong(cursor.getColumnIndexOrThrow(Calls.DATE));
419 void notifyMissedCall(String name, String number, String label, long date) {
466 date // when
    [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...]
  /frameworks/base/core/java/android/widget/
DatePicker.java 48 * This class is a widget for selecting a date. The date can be selected by a
52 * displayed. Also the minimal and maximal date from which dates to be selected
55 * See the <a href="{@docRoot}resources/tutorials/views/hello-datepicker.html">Date
123 * The callback used to indicate the user changes\d the date.
128 * Called upon a date change.
199 // now set the date to the adjusted one
251 // set the min date giving priority of the minDate over startYear
262 // set the max date giving priority of the maxDate over endYear
273 // initialize to current date
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldSimpleDateFormatTest.java 25 import java.util.Date;
54 public void parse(String pattern, String input, Date expected, int start, int end) {
57 Date result = pFormat.parse(input, position);
66 String expected2, Date date) {
70 format.format(date));
74 format.format(date));
92 f2.format(new Date()).getClass() == String.class);
119 f2.format(new Date()).getClass() == String.class);
210 format.format(new Date());
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogAdapter.java 329 // Update the call log even if the cache it is up-to-date: it is possible that the cache
458 final long date = c.getLong(CallLogQuery.DATE); local
502 // The contact info is no longer up to date, we should request it. However, we
530 callTypes, date, duration);
534 callTypes, date, duration, name, ntype, label, lookupUri, null);
  /external/chromium/chrome/browser/resources/net_internals/
logviewpainter.js 81 var date = g_browser.convertTimeTicksToDate(entry.orig.time) ;
82 var tCell = tablePrinter.addCell(date.getTime());
85 var stCell = tablePrinter.addCell(date.getTime() - startTime);