HomeSort by relevance Sort by last modified time
    Searched refs:date (Results 226 - 250 of 414) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tcpdump/
makemib 49 * This file was generated by tcpdump/makemib on `date`
  /external/webkit/WebCore/platform/network/
ResourceResponseBase.h 93 double date() const;
  /ndk/build/tools/
download-toolchain-sources.sh 31 # the default release name (use today's date)
32 RELEASE=`date +%Y%m%d`
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 80 String date = adapter.formatDateTime(calendar); local
81 assertEquals("2008-12-11T18:19:20.000Z", date);
84 date = adapter.formatDateTime(calendar);
85 assertEquals("2012-01-02T23:00:01.000Z", date);
  /external/icu4c/i18n/
simpletz.cpp 11 * Date Name Description
39 // available. Set February to 29 days to accomodate rules with that date
40 // and day-of-week-on-or-before-that-date mode (DOW_LE_DOM_MODE).
270 * the exact starting date. Their exact meaning depend on their respective signs,
470 // Compare the date to the starting and ending rules.+1 = date>rule, -1
471 // = date<rule, 0 = date==rule.
506 SimpleTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
514 double day = uprv_floor(date / U_MILLIS_PER_DAY)
    [all...]
  /cts/tools/host/src/com/android/cts/
HostUtils.java 38 import java.util.Date;
249 * @param separator The separator between the date information and time information.
250 * @param dateSeparator The date separator separating the date information nibbles.
260 int date = cal.get(Calendar.DATE); local
280 fmt.format(formatStr, year, month, date, hour, min, sec);
307 public static Date dateFromString(String s) throws ParseException {
311 public static String dateToString(Date d) {
  /dalvik/libcore/logging/src/main/java/java/util/logging/
XMLFormatter.java 23 import java.util.Date;
59 // format to date
60 String date = MessageFormat.format("{0, date} {0, time}", local
61 new Object[] { new Date(time) });
65 sb.append(indent).append(("<date>")).append(date).append(("</date>"))
  /dalvik/libcore/sql/src/main/java/java/sql/
Timestamp.java 22 import java.util.Date;
30 * addition to the regular date/time value which has millisecond resolution.
32 * The {@code Timestamp} class consists of a regular date/time value, where only
37 * makes it significantly different from the {@code java.util.Date} object which
39 * interchangable with {@code java.util.Date} objects when used outside the
42 * @see Date
44 * @see java.util.Date
46 public class Timestamp extends Date {
58 * supplied values for <i>Year</i>, <i>Month</i>, <i>Date</i>, <i>Hour</i>,
197 public int compareTo(Date theObject) throws ClassCastException
    [all...]
  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DateTest.java 25 import java.sql.Date;
30 @TestTargetClass(Date.class)
32 * JUnit Testcase for the java.sql.Date class
61 // Date strings
77 // Date string array for London (GMT)
81 // Date string array for New York - sometimes a day earlier than London
85 // Date string for Tokyo
102 * Helper method to create a long milliseconds time from a supplied date and
105 static private long getTime(int year, int month, int date, int hour,
107 aCal.set(year, month, date, hour, minute, second)
    [all...]
  /external/bison/build-aux/
mdate-sh 54 # Prevent date giving response in another language.
84 # To find the date, we split the line on spaces and iterate on words
89 # words should be skipped to get the date.
167 *:*) set `date`; eval year=\$$#
  /external/grub/docs/
help2man 160 # Turn off localisation of date (for strftime).
169 my $date = strftime "%B %Y", localtime;
473 .TH $PROGRAM "$section" "$date" "$package $version" FSF
mdate-sh 53 # Prevent date giving response in another language.
75 # To find the date, we split the line on spaces and iterate on words
80 # words should be skipped to get the date.
136 *:*) set `date`; eval year=\$$#
  /external/icu4c/i18n/unicode/
vtzone.h 122 * @param lastModified Receives the last modified date.
130 * @param lastModified The LAST-MODIFIED date.
146 * @param start The start date.
154 * Writes RFC2445 VTIMEZONE data applicalbe for the specified date.
160 * around the specified date.
161 * @param time The date used for rule extraction.
179 * account) as of a particular reference date. The reference date is used to determine
182 * at this particular date and time?). For the time zones produced by createTimeZone(),
183 * the reference data is specified according to the Gregorian calendar, and the date
    [all...]
  /external/icu4c/samples/
Makefile.in 22 SUBDIRS = date cal
  /external/libffi/
mdate-sh 54 # Prevent date giving response in another language.
84 # To find the date, we split the line on spaces and iterate on words
89 # words should be skipped to get the date.
167 *:*) set `date`; eval year=\$$#
  /external/v8/src/
macros.py 55 # For date.js.
69 const kInvalidDate = 'Invalid Date';
91 macro IS_DATE(arg) = (%_ClassOf(arg) === 'Date');
121 # Gets the value of a Date object. If arg is not a Date object
123 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateTypeError());
126 macro DATE_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588).date);
  /frameworks/base/core/java/android/pim/
EventRecurrence.java 47 public void setStartDate(Time date) {
48 startDate = date;
  /frameworks/base/media/libdrm/mobile1/src/jni/
drm1_jni.c 343 * Compute the milliseconds by the specified <code>date</code>
346 * @param date - the specified date,
347 * <code>date = year * 10000 + month * 100 + day</code>
353 static int64_t computeTime(int32_t date, int32_t time)
357 year = date / 10000;
358 month = (date / 100) % 100;
359 day = date % 100;
381 * Compute the milliseconds by the specified <code>date</code>
389 * @param date - the specified date
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java 61 Calls.NUMBER, Calls.DATE, Calls.TYPE, Calls.CACHED_NAME, Calls.CACHED_NUMBER_TYPE,
240 String date = startDate.format2445(); local
241 return date + FLAG_TIMEZONE_UTC;
252 // history - missed, incoming, outgoing along with date and time
  /packages/apps/Browser/src/com/android/browser/
DateSortedExpandableListAdapter.java 36 * ExpandableListAdapter which separates data into categories based on date.
85 // The cursor is sorted by date
96 long date = getLong(mDateIndex); local
97 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 \
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
SelectFunctionalityTest.java 28 import java.sql.Date;
53 private static Date date; field in class:SelectFunctionalityTest
107 date = new Date(currentTime);
170 date.toString(), result.getDate("fdate").toString());
210 prepStatement.setDate(9, date);
237 date.toString(), result.getDate("fdate").toString());
  /external/webkit/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/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...]

Completed in 2065 milliseconds

1 2 3 4 5 6 7 8 91011>>