HomeSort by relevance Sort by last modified time
    Searched refs:DATE (Results 101 - 125 of 193) sorted by null

1 2 3 45 6 7 8

  /external/chromium/base/win/
scoped_variant.cc 180 void ScopedVariant::SetDate(DATE date) {
183 var_.date = date;
scoped_variant_unittest.cc 117 DATE date; local
118 ::SystemTimeToVariantTime(&sys_time, &date);
120 var.SetDate(date);
122 EXPECT_EQ(date, V_DATE(&var));
  /external/chromium_org/base/win/
scoped_variant.cc 180 void ScopedVariant::SetDate(DATE date) {
183 var_.date = date;
scoped_variant_unittest.cc 117 DATE date; local
118 ::SystemTimeToVariantTime(&sys_time, &date);
120 var.SetDate(date);
122 EXPECT_EQ(date, V_DATE(&var));
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduParser.java 339 case PduHeaders.DATE:
484 * (Absolute-token Date-value | Relative-token Delta-seconds-value) */
495 /* Date-value or Delta-seconds-value */
505 * into Date-value */
687 /* Previously-sent-date-value =
688 * Value-length Forwarded-count-value Date-value */
700 /* Date-value */
    [all...]
PduPersister.java 127 Mms.DATE,
266 LONG_COLUMN_INDEX_MAP.put(PduHeaders.DATE, PDU_COLUMN_DATE);
272 LONG_COLUMN_NAME_MAP.put(PduHeaders.DATE, Mms.DATE);
1003 long date = sendReq.getDate(); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 158 values.put(Mms.DATE, System.currentTimeMillis() / 1000L);
SmsReceiverService.java 251 SEND_PROJECTION, null, null, "date ASC"); // date ASC so we send out in
639 values.put(Inbox.DATE, new Long(now));
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 200 finalSortOrder = Mms.DATE + " DESC";
334 boolean addDate = !values.containsKey(Mms.DATE);
347 finalValues.put(Mms.DATE, timeInMillis / 1000L);
    [all...]
MmsSmsProvider.java 120 { BaseColumns._ID, Mms.DATE, Mms.DATE_SENT, Mms.READ, Mms.THREAD_ID, Mms.LOCKED };
142 ThreadsColumns.DATE,
189 "SELECT sms._id AS _id,thread_id,address,body,date,date_sent,index_text,words._id " +
196 "AS body,pdu.date,pdu.date_sent,index_text,words._id " +
212 " GROUP BY thread_id ORDER BY thread_id ASC, date DESC";
600 long date = System.currentTimeMillis(); local
601 values.put(ThreadsColumns.DATE, date - date % 1000);
722 selection, selectionArgs, null, null, " date DESC")
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 364 map.put(Searches.DATE, Searches.DATE);
451 Searches.DATE + " LONG" +
556 BookmarkColumns.DATE, // 3
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsTest.java 48 import java.util.Date;
116 long now = new Date().getTime();
414 Calls._ID, Calls.NUMBER, Calls.DATE, Calls.DURATION, Calls.TYPE,
438 int insertDate = (int) new Date().getTime();
441 value.put(Calls.DATE, insertDate);
467 int now = (int) new Date().getTime();
470 value.put(Calls.DATE, now);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
calendar.h 11 * Date Name Description
75 * time fields have been initialized with the current date and time:
84 * needed to implement the date-time formatting for a particular language
98 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc.
146 * The date or time format strings are not part of the definition of a
154 * month up in the date <code>December 12, <b>1996</b></code> results in
158 * <code>Calendar</code> also provides a date arithmetic function for
160 * For example, subtracting 5 days from the date <code>September 12, 1996</code>
169 * Field IDs for date and time. Used to specify date/time fields. ERA is calenda
    [all...]
  /external/icu4c/i18n/unicode/
calendar.h 11 * Date Name Description
76 * time fields have been initialized with the current date and time:
85 * needed to implement the date-time formatting for a particular language
100 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc.
131 * many US locations observe daylight saving time. On the date switching to daylight
134 * the date. When the input wall time fall into this missing time slot, the ICU
139 * <p>On the date switching back to standard time, wall clock time is moved back one
142 * by default. For example, 1:30 AM on the date is resolved as 1:30 AM standard time.
168 * The date or time format strings are not part of the definition of a
176 * month up in the date <code>December 12, <b>1996</b></code> results i
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Lexer.java 172 addKeyword(DateHeader.NAME.toUpperCase(), TokenTypes.DATE);
  /frameworks/base/core/java/android/text/format/
DateFormat.java 28 import java.util.Date;
38 * Utility class for producing strings with formatted date/time.
77 public static final char DATE = 'd';
223 * Returns a {@link java.text.DateFormat} object that can format the date
225 * to the current locale and the user's date-order preference.
227 * @return the {@link java.text.DateFormat} object that properly formats the date.
237 * Returns a {@link java.text.DateFormat} object to format the date
238 * as if the date format setting were set to <code>value</code>,
241 * @param value the date format setting string to interpret for
289 * Returns a {@link java.text.DateFormat} object that can format the date
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/
CallDetailActivityTest.java 257 values.put(VoicemailContract.Voicemails.DATE, String.valueOf(System.currentTimeMillis()));
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java 26 import java.util.Date;
36 * Formats and parses dates in a locale-sensitive manner. Formatting turns a {@link Date} into
37 * a {@link String}, and parsing turns a {@code String} into a {@code Date}.
54 * to the ISO 8601 international standard date format.
90 * <tr> <td>{@code '}</td> <td>escape for text</td> <td>(Delimiter)</td> <td>{@code 'Date='}:Date=</td> </tr>
101 * form (because the usual case is to format a complete date). The relationship between {@code E}
130 * System.out.println(df.format(new Date(0)));
153 * System.out.format("%30s %s\n", format, sdf.format(new Date(0)));
155 * System.out.format("%30s %s\n", format, sdf.format(new Date(0)))
1066 Date date; local
1343 Date date; local
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 29 import java.sql.Date;
61 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
    [all...]
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
MediaPlayerProxyTestCase.java 528 values.put(VoicemailContract.Voicemails.DATE, String.valueOf(System.currentTimeMillis()));
  /packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoriteFragment.java 216 * Call shortcuts older than this date (persisted in shared preferences) will not show up in
222 * The date of the current call shortcut that is showing on screen.
406 // Save the date of the most recent call log item
408 mCurrentCallShortcutDate = cursor.getLong(CallLogQuery.DATE);
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogFragmentTest.java 44 import java.util.Date;
484 * @param date In millisec since epoch. Use NOW to use the current time.
491 private void insertWithCachedValues(String number, long date, int duration, int type,
493 insert(number, Calls.PRESENTATION_ALLOWED, date, duration, type);
514 * @param date In millisec since epoch. Use NOW to use the current time.
518 private void insert(String number, int presentation, long date, int duration, int type) {
519 insertValues(getValuesToInsert(number, presentation, date, duration, type));
534 * @param date In millisec since epoch. Use NOW to use the current time.
539 long date, int duration, int type) {
544 values[CallLogQuery.DATE] = date == NOW ? new Date().getTime() : date
    [all...]
  /external/libvorbis/doc/
05-comment.tex 140 \item[DATE]
141 Date the track was recorded

Completed in 2584 milliseconds

1 2 3 45 6 7 8