/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);
|
/cts/tests/tests/text/src/android/text/format/cts/ |
DateUtilsTest.java | 28 import java.util.Date; 212 Date date = new Date(109, 0, 19, 3, 30, 15); local 213 long fixedTime = date.getTime(); 216 Date dateWithCurrentYear = new Date(currentYear - 1900, 0, 19, 3, 30, 15);
|
/device/common/ |
generate-blob-scripts.sh | 52 ARCHIVEDIR=archive-$(date +%s)
|
/external/bluetooth/glib/gobject/ |
gboxed.c | 180 const GDate *date = (const GDate*) boxed; local 182 return g_date_new_julian (g_date_get_julian (date));
|
/external/chromium/net/base/ |
cookie_monster.h | 150 // creation date. 157 // creation date. 229 // creation date. 297 // already-expired expiration date. This captures that case. 502 // Approximate date of access time of least recently accessed cookie 611 void SetLastAccessDate(const base::Time& date) { 612 last_access_date_ = date; 660 // The cookie was overwritten with an already-expired expiration date. [all...] |
/external/icu4c/extra/uconv/ |
makedata.mak | 82 @echo All targets are up to date (mode $(PKGMODE))
|
/external/icu4c/i18n/ |
ucurr.cpp | [all...] |
/external/llvm/lib/Archive/ |
ArchiveWriter.cpp | 94 // Set the last modification date 97 memcpy(hdr.date,buffer,12); 309 memcpy(Hdr.date,buffer,12);
|
/external/webkit/Source/WebCore/html/ |
InputType.cpp | 83 map->add(InputTypeNames::date(), DateInputType::create); 673 const AtomicString& date() function in namespace:WebCore::InputTypeNames 675 DEFINE_STATIC_LOCAL(AtomicString, name, ("date"));
|
/external/webkit/Source/WebCore/loader/cache/ |
CachedResource.cpp | 183 double dateValue = m_response.date(); 202 double dateValue = m_response.date();
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
VideoEditorHelper.java | 23 import java.util.Date; 431 Date date = new Date(); local 432 final String filePath = location + dateFormat.format(date) +
|
/libcore/luni/src/main/java/java/util/ |
Calendar.java | 31 * {@code Date} object and a set of integer fields such as 33 * {@code HOUR}, and so on. (A {@code Date} object represents a 34 * specific instant in time with millisecond precision. See {@link Date} for 35 * information about the {@code Date} class.) 38 * Subclasses of {@code Calendar} interpret a {@code Date} 46 * have been initialized with the current date and time: <blockquote> 54 * to implement the date-time formatting for a particular language and calendar 95 * When computing a {@code Date} from time fields, two special 97 * {@code Date} (such as only year and month but no day in the month), or 105 * of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
EventInfoFragment.java | 1060 Time date = new Time(Utils.getTimeZone(getActivity(), mTZUpdater)); local 1097 Time date = new Time(Utils.getTimeZone(getActivity(), mTZUpdater)); local [all...] |
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleWeekView.java | 534 String date = Utils.formatDateRange(context, millis, millis, local 538 accessEvent.getText().add(date);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/ |
Rfc822Output.java | 45 import java.util.Date; 58 // In MIME, en_US-like date format should be used. In other words "MMM" should be encoded to 197 String date = DATE_FORMAT.format(new Date(message.mTimeStamp)); local 198 writeHeader(writer, "Date", date);
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/ |
DateTimeParser.java | 99 private static class Date { 104 public Date(String year, int month, int day) { 140 Date d; Time t; 156 d = date(); 202 final public Date date() throws ParseException { method in class:DateTimeParser 207 {if (true) return new Date(y, m, d);}
|
/packages/apps/Email/tests/src/com/android/emailcommon/internet/ |
MimeMessageTest.java | 34 import java.util.Date; 71 * Confirms that setSentDate() correctly set the "Date" header of a Mime message. 74 * MimeMessage depends on the date formatter, which may emit wrong date format 92 Date date = new Date(expectedTime); local 94 message.setSentDate(date); 95 String[] headers = message.getHeader("Date"); 101 Date result = format.parse(headers[0]) [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
processor_32.h | 238 unsigned int date; member in struct:microcode_header
|