HomeSort by relevance Sort by last modified time
    Searched refs:DATE (Results 126 - 150 of 165) sorted by null

1 2 3 4 56 7

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java     [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsProvider.java 115 { BaseColumns._ID, Mms.DATE, Mms.READ, Mms.THREAD_ID, Mms.LOCKED };
137 ThreadsColumns.DATE,
360 String smsProjection = "sms._id as _id,thread_id,address,body,date," +
363 "body,pdu.date,index_text,words._id";
389 "thread_id ASC, date DESC");
564 long date = System.currentTimeMillis(); local
565 values.put(ThreadsColumns.DATE, date - date % 1000);
671 selection, selectionArgs, null, null, " date DESC")
    [all...]
  /external/chromium/third_party/icu/public/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
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/nist-sip/java/gov/nist/javax/sip/parser/
Lexer.java 172 addKeyword(DateHeader.NAME.toUpperCase(), TokenTypes.DATE);
  /external/webkit/WebKit/chromium/src/
AssertMatchingEnums.cpp 246 COMPILE_ASSERT_MATCHING_ENUM(WebInputElement::Date, HTMLInputElement::DATE);
  /external/webkit/WebKit/mac/History/
WebHistory.mm 154 CFGregorianDate date = CFAbsoluteTimeGetGregorianDate(interval, timeZone);
155 date.hour = 0;
156 date.minute = 0;
157 date.second = 0;
158 beginningOfDay = CFGregorianDateGetAbsoluteTime(date, timeZone);
159 date.day += 1;
160 beginningOfNextDay = CFGregorianDateGetAbsoluteTime(date, timeZone);
164 static inline NSTimeInterval beginningOfDay(NSTimeInterval date)
168 if (!(date >= cachedBeginningOfDay && date < cachedBeginningOfNextDay)
    [all...]
  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/
CallDetailActivity.java 71 CallLog.Calls.DATE,
150 long date = callCursor.getLong(DATE_COLUMN_INDEX); local
154 // Pull out string in format [relative], [date]
155 CharSequence dateClause = DateUtils.formatDateRange(this, date, date,
RecentCallsListActivity.java 93 Calls.DATE,
609 views.dateView = (TextView) view.findViewById(R.id.date);
742 long date = c.getLong(DATE_COLUMN_INDEX); local
744 // Set the date/time field by mixing relative and absolute times.
747 views.dateView.setText(DateUtils.getRelativeTimeSpanString(date,
    [all...]
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java 26 import java.util.Date;
36 * manner. Formatting turns a {@link Date} into a {@link String}, and parsing turns a
37 * {@code String} into a {@code Date}.
51 * to the ISO 8601 international standard date format.
83 * <tr> <td>{@code '}</td> <td>escape for text</td> <td>(Delimiter)</td> <td>'Date='</td> </tr>
136 * System.err.println(df.format(new Date(0)));
159 * System.err.format("%30s %s\n", format, sdf.format(new Date(0)));
161 * System.err.format("%30s %s\n", format, sdf.format(new Date(0)));
180 * This is because it's called upon to format instances of {@code Date}, which represents an
181 * absolute time in UTC. That is, {@code Date} does not carry time zone information
    [all...]
  /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...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
TimeBar.java 253 final int dayBlock = time.get(Calendar.DATE);
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiverService.java 208 SEND_PROJECTION, null, null, "date ASC"); // date ASC so we send out in
490 values.put(Inbox.DATE, new Long(System.currentTimeMillis()));
  /libcore/luni/src/test/java/tests/sql/
PreparedStatementTest.java 36 import java.sql.Date;
71 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 88 import java.util.Date;
100 // Alarm action for midnight (so we can update the date display).
303 // quickly stash away the x/y of the current date
321 mDate = (TextView) findViewById(R.id.date);
510 final Date now = new Date();
511 if (DEBUG) Log.d(LOG_TAG, "refreshing date..." + now);
607 // reload the date format in case the user has changed settings
625 today.add(Calendar.DATE, 1);
694 mDate = (TextView) findViewById(R.id.date);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 56 import java.util.Date;
1372 int date = Integer.parseInt(nitzSubs[2]); local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 63 import java.util.Date;
1414 int date = Integer.parseInt(nitzSubs[2]); local
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataTest.java     [all...]
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java 58 import java.util.Date;
178 // Internal structure for storing a time zone date from a SYSTEMTIME structure
179 // This date represents either the start or the end time for DST
267 * @return a GregorianCalendar with the given time zone and date
293 Date date = null; local
298 date = new Date(checkTime);
299 boolean inDaylightTime = tz.inDaylightTime(date);
350 int date; field in class:CalendarUtilities.RRule
401 int date = calendar.get(Calendar.DAY_OF_MONTH); local
502 Date date = new Date(startTime); local
1301 Date date = new Date(entityValues.getAsLong(Events.DTSTART)); local
1551 Date date = new Date(entityValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME)); local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
calregts.cpp 202 int32_t date = cal->get(UCAL_DATE, status) + 1 ; local
204 log(UnicodeString("/") + date) ;
297 //This will print out todays date for MONTH and DAY_OF_MONTH
298 //instead of the date it was set to.
353 logln("DATE: " + Calendar::get(Calendar::DATE));
380 logln("DATE: " + Calendar::get(Calendar::DATE));
445 UDate date = fmt->parse("29MAY97", status); local
447 cal->setTime(date, status)
699 SimpleDateFormat *date; local
1267 UDate date = DATA[i]; local
1566 UDate date = makeDate(1996, UCAL_JANUARY, 3); \/\/ Arbitrary date local
2124 UDate date = cutover + local
    [all...]
dtfmttst.cpp 149 * Instantiate a date so we can display the time zone name.
463 tryPat994(f, "yy/MM/dd HH:mm:ss", "97/01/17 10:11:42", date(97, 1 - 1, 17, 10, 11, 42));
482 UDate date = format->parse(str, status); local
483 if (U_FAILURE(status) || date == null)
491 ((DateFormat*)format)->format(date, f);
492 logln(UnicodeString(" parse(") + str + ") -> " + dateToString(date));
495 !(date == expected)) errln((UnicodeString)"FAIL: Expected null");//" + expected);
552 testIt917(fmt, myDate, date(97, 2 - 1, 3));
556 testIt917(fmt, myDate, date(97, 3 - 1, 4));
604 UDate june = date(97, UCAL_JUNE, 15)
841 UDate date; local
952 UDate date; local
1092 DateFormat *date=0, *time=0, *full=0; local
1246 UDate date = -9896080848000.0; local
1649 UDate date = ref.parse(ctou(datestr), ec); local
1670 UDate date = ref.parse(ctou(datestr), ec); local
1688 UDate date = ref.parse(ctou(datestr), ec); local
1747 UDate date = ref.parse(ctou(datestr), ec); local
    [all...]
  /external/icu4c/test/intltest/
calregts.cpp 202 int32_t date = cal->get(UCAL_DATE, status) + 1 ; local
204 log(UnicodeString("/") + date) ;
304 //This will print out todays date for MONTH and DAY_OF_MONTH
305 //instead of the date it was set to.
360 logln("DATE: " + Calendar::get(Calendar::DATE));
387 logln("DATE: " + Calendar::get(Calendar::DATE));
452 UDate date = fmt->parse("29MAY97", status); local
454 cal->setTime(date, status)
706 SimpleDateFormat *date; local
1296 UDate date = DATA[i]; local
1595 UDate date = makeDate(1996, UCAL_JANUARY, 3); \/\/ Arbitrary date local
2153 UDate date = cutover + local
    [all...]
dtfmttst.cpp 149 * Instantiate a date so we can display the time zone name.
490 tryPat994(f, "yy/MM/dd HH:mm:ss", "97/01/17 10:11:42", date(97, 1 - 1, 17, 10, 11, 42));
509 UDate date = format->parse(str, status); local
510 if (U_FAILURE(status) || date == null)
518 ((DateFormat*)format)->format(date, f);
519 logln(UnicodeString(" parse(") + str + ") -> " + dateToString(date));
522 !(date == expected)) errln((UnicodeString)"FAIL: Expected null");//" + expected);
587 testIt917(fmt, myDate, date(97, 2 - 1, 3));
591 testIt917(fmt, myDate, date(97, 3 - 1, 4));
639 UDate june = date(97, UCAL_JUNE, 15)
884 UDate date; local
995 UDate date; local
1138 DateFormat *date=0, *time=0, *full=0; local
1295 UDate date = -9896080848000.0; local
1704 UDate date = ref.parse(ctou(datestr), ec); local
1725 UDate date = ref.parse(ctou(datestr), ec); local
1743 UDate date = ref.parse(ctou(datestr), ec); local
1805 UDate date = ref.parse(ctou(datestr), ec); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java     [all...]

Completed in 993 milliseconds

1 2 3 4 56 7