HomeSort by relevance Sort by last modified time
    Searched refs:DATE (Results 76 - 100 of 249) sorted by null

1 2 34 5 6 7 8 910

  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
genlingware.pl 117 DATE 2009-01-15
146 "DATE" => 3,
  /frameworks/base/core/java/android/provider/
CallLog.java 134 public static final String DEFAULT_SORT_ORDER = "date DESC";
215 * The date the call occured, in milliseconds since the epoch
218 public static final String DATE = "date";
458 values.put(DATE, Long.valueOf(start));
BrowserContract.java 211 * The date the item was last visited, in milliseconds since the epoch.
212 * <p>Type: INTEGER (date in milliseconds since January 1, 1970)</p>
214 public static final String DATE_LAST_VISITED = "date";
494 * The date the search was performed, in milliseconds since the epoch.
495 * <p>Type: NUMBER (date in milliseconds since January 1, 1970)</p>
497 public static final String DATE = "date";
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerMetadataParserTest.java 25 import java.util.Date;
331 writeDateRecord(Metadata.DATE, 0, "PST");
335 assertEquals(new Date(0), mMetadata.getDate(Metadata.DATE));
402 // Insert a Date record at the current position.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DateTest.java 21 import java.util.Date;
29 * java.util.Date#Date()
32 // Test for method java.util.Date()
36 long now = new Date().getTime();
37 assertTrue("Created incorrect date: " + oldTime + " now: " + now,
42 * java.util.Date#Date(int, int, int)
45 // Test for method java.util.Date(int, int, int)
46 Date d1 = new Date(70, 0, 1); // the epoch + local tim
53 Date date = new Date(99, 5, 22); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentTable.java 63 .add(Voicemails.DATE)
92 .add(Voicemails.DATE)
  /packages/services/Mms/src/com/android/mms/service/
SendRequest.java 119 values.put(Telephony.Mms.DATE, System.currentTimeMillis() / 1000L);
135 values.put(Telephony.Mms.DATE, System.currentTimeMillis() / 1000L);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
DateTimeActivity.java 52 import java.util.Date;
96 case DATE:
127 // We use December 31st because it's unambiguous when demonstrating the date format.
225 // Updates the member strings to reflect the current date and time.
265 case DATE:
306 // Display a default example date.
307 // TODO: Check with UX on exactly what we should display here, a sample date
321 // Updates the Date and Time entries in the current view, without resetting the
337 mActions.add(ActionType.DATE.toAction(mResources, mNowDate));
340 case DATE
538 Date date = new Date(); local
627 final long date = Calendar.getInstance().getTimeInMillis(); local
    [all...]
  /frameworks/opt/telephony/src/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...]
PduHeaders.java 33 public static final int DATE = 0x85;
704 case DATE:
  /packages/apps/Dialer/tests/src/com/android/dialer/tests/calllog/
FillCallLogTestActivity.java 223 values[i].put(Calls.DATE, System.currentTimeMillis()); // Will be randomized later
319 // Add some randomness to the date. For each new entry being added, add an extra
321 values.put(Calls.DATE,
322 values.getAsLong(Calls.DATE)
448 * Sets the call date Textview to the current selected date
456 * Shows a date picker dialog.
464 * Helper class to show a date picker.
504 // Subtract offset from the call date/time and store as new date/tim
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java 147 BookmarkColumns.DATE, BookmarkColumns.BOOKMARK, BookmarkColumns.TITLE,
155 BookmarkColumns.DATE,
1153 Long date; field in class:ChromeBrowserProvider.BookmarkRow
1196 Long date; field in class:ChromeBrowserProvider.SearchRow
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 93 " date = (strftime('%s','now') * 1000), " +
131 " date = (strftime('%s','now') * 1000), " +
142 " (SELECT date * 1000 AS date, sub AS snippet, thread_id FROM pdu" +
143 " UNION SELECT date, body AS snippet, thread_id FROM sms)" +
144 " WHERE thread_id = OLD.thread_id ORDER BY date DESC LIMIT 1) " +
148 " (SELECT date * 1000 AS date, sub_cs AS snippet_cs, thread_id FROM pdu" +
149 " UNION SELECT date, 0 AS snippet_cs, thread_id FROM sms)" +
150 " WHERE thread_id = OLD.thread_id ORDER BY date DESC LIMIT 1) "
    [all...]
  /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...]
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...]
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 147 Sms.DATE,
203 null, "date DESC"); // get in newest to oldest order
224 "locked=0 AND date<" + latestDate,
237 long date = cursor.getLong(COLUMN_SMS_DATE); local
238 String dateStr = MessageUtils.formatTimeStampString(context, date, true);
243 "\n date: " + dateStr +
244 "\n date: " + date +
264 null, "date DESC"); // get in newest to oldest order
294 Mms.DATE,
    [all...]
  /external/chromium_org/net/base/
directory_lister.cc 76 if (sort_type == DirectoryLister::DATE)
  /frameworks/base/media/java/android/media/
Metadata.java 24 import java.util.Date;
120 public static final int DATE = 13; // Date
484 public Date getDate(final int key) {
490 return new Date(timeSinceEpoch);
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 161 * The date the message was received.
164 public static final String DATE = "date";
167 * The date the message was sent.
320 public static final String DEFAULT_SORT_ORDER = "date DESC";
330 * @param date the timestamp for the message
338 Long date, boolean read, boolean deliveryReport) {
340 resolver, uri, address, body, subject, date, read, deliveryReport, -1L);
351 * @param date the timestamp for the message
360 Long date, boolean read, boolean deliveryReport)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ResponseData.java 232 data[3] = byteToBCD(mCalendar.get(java.util.Calendar.DATE));
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 27 import java.util.Date;
290 cal.setTime(new Date(value));
296 modDate = cal.get(Calendar.DATE);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java 61 Calls.NUMBER, Calls.DATE, Calls.TYPE, Calls.CACHED_NAME, Calls.CACHED_NUMBER_TYPE,
212 // history - missed, incoming, outgoing along with date and time
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP1to2UpgradeTests.java 89 values.put(BookmarkColumns.DATE, 123456);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
CallLogInteraction.java 72 Long date = getDate(); local
73 return date == null ? -1 : date;
88 Long date = getDate(); local
89 return date == null ? null : ContactInteractionUtil.formatDateStringFromTimestamp(
90 date, context);
144 return mValues.getAsLong(Calls.DATE);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
DateUtils.java 27 import java.util.Date;
39 * When parsing a date without a year, the system assumes 1970, which wasn't a leap-year.
44 // Variations of ISO 8601 date format. Do not change the order - it does affect the
65 * Parses the supplied string to see if it looks like a date.
67 * @param string The string representation of the provided date
68 * @param mustContainYear If true, the string is parsed as a date containing a year. If false,
69 * the string is parsed into a valid date even if the year field is missing.
70 * @return A Calendar object corresponding to the date if the string is successfully parsed.
75 Date date; local
    [all...]

Completed in 1627 milliseconds

1 2 34 5 6 7 8 910