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

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/sql/
Timestamp.java 22 import java.util.Date;
28 * addition to the regular date/time value which has millisecond resolution.
30 * The {@code Timestamp} class consists of a regular date/time value, where only
35 * makes it significantly different from the {@code java.util.Date} object which
37 * interchangable with {@code java.util.Date} objects when used outside the
40 * @see Date
42 * @see java.util.Date
44 public class Timestamp extends Date {
56 * supplied values for <i>Year</i>, <i>Month</i>, <i>Date</i>, <i>Hour</i>,
195 public int compareTo(Date theObject) throws ClassCastException
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
RequestHeaders.java 20 import java.util.Date;
258 public void setIfModifiedSince(Date date) {
262 String formattedDate = HttpDate.format(date);
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
help2man 188 # Turn off localisation of date (for strftime).
197 my $date = strftime "%B %Y", localtime;
515 .TH $PROGRAM "$section" "$date" "$source" "$manual"
mdate-sh 53 # Prevent date giving response in another language.
87 # To find the date, we split the line on spaces and iterate on words
92 # words should be skipped to get the date.
170 *:*) set `date`; eval year=\$$#
  /packages/apps/Browser/src/com/android/browser/
DateSortedExpandableListAdapter.java 31 * ExpandableListAdapter which separates data into categories based on date.
75 // The cursor is sorted by date
86 long date = getLong(mDateIndex); local
87 int index = mDateSorter.getIndex(date);
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DateSortedExpandableListAdapter.java 36 * ExpandableListAdapter which separates data into categories based on date. Copied from
96 // The cursor is sorted by date
107 long date = getLong(mDateIndex); local
108 int index = mDateSorter.getIndex(date);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
GpxParser.java 183 * @return date in milliseconds.
193 int date = Integer.parseInt(m.group(3)); local
216 c.set(year, month, date, hourOfDay, minute, second);
  /system/core/toolbox/
Android.mk 22 date \
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TimestampTest.java 21 import java.util.Date;
82 // ...this is accepted despite being a crazy date specification
83 // ...it is treated as the correct format date 3000-06-08 12:40:06.875 !!
375 String date = "1970-01-01 22:17:59.0 "; local
376 Timestamp t = Timestamp.valueOf(date);
632 * @tests java.sql.Timestamp#compareTo(java.util.Date)
635 Date theTest = new Timestamp(TIME_EARLY);
636 Date theTest2 = new Timestamp(TIME_LATE);
640 Date theTimestamp2 = new Timestamp(element);
648 Date date = new Date(1000000)
    [all...]
  /external/icu4c/i18n/
zonemeta.cpp 113 * Convert a date string used by metazone mappings to UDate.
180 UDate date = Grego::fieldsToDay(year, month - 1, day) * U_MILLIS_PER_DAY local
182 return date;
405 ZoneMeta::getMetazoneID(const UnicodeString &tzid, UDate date, UnicodeString &result) {
411 if (mzm->from <= date && mzm->to > date) {
zstrfmt.cpp 1264 UDate date = cal.getTime(status); local
1281 UDate date = cal.getTime(status); local
1306 UDate date = cal.getTime(status); local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
shell.js 216 * Date functions used by tests in Date suite
239 * have to be careful not to use a date subject to Daylight Savings Time...
243 return -((new Date(2000, 1, 1)).getTimezoneOffset())/60;
248 * Date test "ResultArrays" are hard-coded for Pacific Standard Time.
256 /* The date testcases instantiate Date objects in two different ways:
258 * millisecond mode: e.g. dt = new Date(10000000);
259 * year-month-day mode: dt = new Date(2000, 5, 1, ...);
261 * In the first case, the date is measured from Time 0 in Greenwich (i.e. UTC)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/
shell.js 216 * Date constants and functions used by tests in Date suite
233 var now = new Date();
235 //Date.parse() is accurate only to the second
243 * have to be careful to use a date not subject to Daylight Savings Time...
247 return -((new Date(2000, 1, 1)).getTimezoneOffset())/60;
456 print( new Date( UTC(dst_start + LocalTZA())) );
544 function MakeDay( year, month, date )
546 if ( isNaN(year) || isNaN(month) || isNaN(date)) {return Number.NaN;}
550 date = ToInteger(date )
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduComposer.java 388 * Append date value into mMessage.
392 protected void appendDateValue(long date) {
395 * Date-value = Long-integer
397 appendLongInteger(date);
576 case PduHeaders.DATE:
577 long date = mPduHeader.getLongInteger(field); local
578 if (-1 == date) {
583 appendDateValue(date);
681 // Date Optional
682 appendHeader(PduHeaders.DATE);
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
SelectFunctionalityTest.java 24 import java.sql.Date;
48 private static Date date; field in class:SelectFunctionalityTest
102 date = new Date(currentTime);
159 date.toString(), result.getDate("fdate").toString());
193 prepStatement.setDate(9, date);
220 date.toString(), result.getDate("fdate").toString());
  /external/icu4c/test/intltest/
tzregts.cpp 71 logln(new Date().toString());
150 errcheckln(status, "Error creating date format %s", u_errorName(status));
320 PST, new Date(98,Calendar.APRIL,4,22,0), new Date(98, Calendar.APRIL, 5,6,0),
321 PST, new Date(98,Calendar.OCTOBER,24,22,0), new Date(98,Calendar.OCTOBER,25,6,0),
371 int32_t date = testCal->get(UCAL_DATE, status); local
375 --date;
380 ++date;
387 date,
1046 UDate date = 0; local
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CallNotifier.java 588 if (VDBG) log("- CallerInfo already up to date, using available data");
1146 final long date = c.getCreateTime(); local
1835 final long date = c.getCreateTime(); local
    [all...]
  /external/kernel-headers/original/linux/
msdos_fs.h 166 __le16 cdate; /* Creation date */
167 __le16 adate; /* Last access date */
169 __le16 time,date,start;/* time, date and first cluster */ member in struct:msdos_dir_entry
438 extern int date_dos2unix(unsigned short time, unsigned short date);
439 extern void fat_date_unix2dos(int unix_date, __le16 *time, __le16 *date);
  /external/webkit/Source/WebCore/html/
FTPDirectoryDocument.cpp 85 void appendEntry(const String& name, const String& size, const String& date, bool isDirectory);
111 void FTPDirectoryDocumentParser::appendEntry(const String& filename, const String& size, const String& date, bool isDirectory)
131 element->appendChild(Text::create(document(), date), ec);
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 186 holder.dateView = (TextView) agendaDayView.findViewById(R.id.date);
205 Time date = mTmpTime; local
206 long millis = date.setJulianDay(row.mDay);
213 // Build text for the date
410 * @param time the date to search for
411 * @return the cursor position of the first event for that date, or zero
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 146 Sms.DATE,
202 null, "date DESC"); // get in newest to oldest order
223 "locked=0 AND date<" + latestDate,
236 long date = cursor.getLong(COLUMN_SMS_DATE); local
237 String dateStr = MessageUtils.formatTimeStampString(context, date, true);
242 "\n date: " + dateStr +
243 "\n date: " + date +
263 null, "date DESC"); // get in newest to oldest order
293 Mms.DATE,
    [all...]
  /bionic/libc/kernel/common/linux/
msdos_fs.h 157 __le16 time,date,start; member in struct:msdos_dir_entry
  /development/ndk/platforms/android-3/include/linux/
msdos_fs.h 157 __le16 time,date,start; member in struct:msdos_dir_entry
  /development/testrunner/
create_test.py 110 "YEAR":datetime.date.today().year}
  /external/apache-harmony/auth/src/test/java/common/javax/security/auth/x500/
X500PrivateCredentialTest.java 35 import java.util.Date;
49 public void checkValidity(Date date){}
67 public Date getNotBefore() {
71 public Date getNotAfter() {

Completed in 2046 milliseconds

<<11121314151617181920>>