Searched refs:date (Results 1 - 25 of 46) sorted by last modified time

12

/frameworks/rs/
H A Dupdate_rs_prebuilts.sh67 # Build a sample support application to ensure that all the pieces are up to date.
118 DATE=`date +%Y%m%d`
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java161 * The date the message was received.
164 public static final String DATE = "date";
167 * The date the message was sent.
322 public static final String DEFAULT_SORT_ORDER = "date DESC";
332 * @param date the timestamp for the message
340 Long date, boolean read, boolean deliveryReport) {
342 resolver, uri, address, body, subject, date, read, deliveryReport, -1L);
353 * @param date the timestamp for the message
362 Long date, boolean read, boolean deliveryReport) {
364 date, rea
338 addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport) argument
360 addMessageToUri(int subId, ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport) argument
382 addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) argument
406 addMessageToUri(int subId, ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) argument
522 addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean read) argument
542 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date, boolean read) argument
582 addMessage(ContentResolver resolver, String address, String body, String subject, Long date) argument
600 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date) argument
627 addMessage(ContentResolver resolver, String address, String body, String subject, Long date) argument
645 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date) argument
691 addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument
712 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceStateTracker.java1562 int date = Integer.parseInt(nitzSubs[2]);
1563 c.set(Calendar.DATE, date);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmServiceStateTracker.java1690 int date = Integer.parseInt(nitzSubs[2]);
1691 c.set(Calendar.DATE, date);
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduComposer.java388 * Append date value into mMessage.
392 protected void appendDateValue(long date) { argument
397 appendLongInteger(date);
577 long date = mPduHeader.getLongInteger(field);
578 if (-1 == date) {
583 appendDateValue(date);
H A DPduPersister.java1009 long date = sendReq.getDate();
1010 if (date != -1) {
1011 values.put(Mms.DATE, date);
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneData.java190 Date date = new Date(mTimeMillis);
198 tz.mDisplayName = tz.mTz.getDisplayName(tz.mTz.inDaylightTime(date),
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DObexTime.java78 public ObexTime(Date date) { argument
79 mDate = date;
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DObexTime.java78 public ObexTime(Date date) { argument
79 mDate = date;
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java159 public void setStartDate(Time date) { argument
160 startDate = date;
H A DRecurrenceProcessor.java111 // last "until" date or "rdate".
621 * value. Returns an array of longs where each element is a date in UTC
632 * @return an array of dates, each date is in UTC milliseconds
645 // do so) because the "until" date string is specified in UTC and that
714 * strings containing the start date/times of the occurrences; the output
721 * @param dtstart the dtstart date as defined in RFC2445. This
724 * @param rangeStartDateValue the first date-time you care about, inclusive
725 * @param rangeEndDateValue the last date-time you care about, not inclusive (so
836 // Ensure that the "until" date string is specified in UTC.
838 // 15 is length of date
1138 unsafeNormalize(Time date) argument
1308 setTimeFromLongValue(Time date, long val) argument
[all...]
H A DRecurrenceSet.java123 for (long date : dates) {
124 list.add(date);
145 * representing each date/time in the recurrence.
147 * @return The list of date/times.
188 * there was an error, including if the date is out of range.
302 // make sure the time is printed just as a date, if all day.
361 // make sure the time is printed just as a date, if all day.
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DRRuleTest.java48 for (long date : dates) {
49 time.set(date);
62 // Use this date as end of recurrence unlessotherwise specified.
81 * so this is faked by expanding until the endAt date, and then taking limit results.
83 * @param advanceTo The starting date for expansion. dtstartStr is used if null is passed in.
84 * @param endAt The ending date. DEFAULT_END is used if null is passed in.
125 boolean truncate = dtstartStr.length() <= 8; // Just date, not date-time
254 // if UNTIL date does not match start date, the
[all...]
H A DRecurrenceProcessorTest.java40 for (long date : dates) {
41 time.set(date);
167 throw new RuntimeException("expected last occurrence date does not match."
578 // BUG 1658567: UNTIL=date
2480 for (long date : dates) {
2481 // Use the date so that this loop is not optimized away.
2482 if (date == -1) {
2483 Log.e(TAG, "unexpected date");
2501 Time date = new Time(tz);
2502 date
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DAccessibleDateAnimator.java17 package com.android.datetimepicker.date;
37 * Announce the currently-selected date when launched.
42 // Clear the event's current text so that only the current date will be spoken.
H A DDatePickerController.java17 package com.android.datetimepicker.date;
19 import com.android.datetimepicker.date.DatePickerDialog.OnDateChangedListener;
20 import com.android.datetimepicker.date.MonthAdapter.CalendarDay;
25 * Controller class to communicate among the various components of the date picker dialog.
H A DDatePickerDialog.java17 package com.android.datetimepicker.date;
41 import com.android.datetimepicker.date.MonthAdapter.CalendarDay;
50 * Dialog allowing users to select a date.
114 * The callback used to indicate the user is done filling in the date.
129 * The callback used to notify other date picker components of a change in selected date.
142 * @param callBack How the parent is notified that the date is set.
382 * Sets the minimal date supported by this DatePicker. Dates before (but not including) the
383 * specified date will be disallowed from being selected.
395 * @return The minimal date supporte
[all...]
H A DDayPickerView.java17 package com.android.datetimepicker.date;
35 import com.android.datetimepicker.date.DatePickerDialog.OnDateChangedListener;
36 import com.android.datetimepicker.date.MonthAdapter.CalendarDay;
271 protected void setMonthDisplayed(CalendarDay date) { argument
272 mCurrentMonthDisplayed = date.month;
374 * Attempts to return the date that has accessibility focus.
376 * @return The date that has accessibility focus, or {@code null} if no date
399 * Attempts to restore accessibility focus to a given date. No-op if
402 * @param day The date tha
[all...]
H A DMonthAdapter.java17 package com.android.datetimepicker.date;
27 import com.android.datetimepicker.date.MonthView.OnDayClickListener;
48 * A convenience class to represent a specific date.
75 public void set(CalendarDay date) { argument
76 year = date.year;
77 month = date.month;
78 day = date.day;
H A DMonthView.java17 package com.android.datetimepicker.date;
42 import com.android.datetimepicker.date.MonthAdapter.CalendarDay;
571 // If the min / max date are set, only process the click if it's a valid selection.
657 * @return The date that has accessibility focus, or {@code null} if no date
677 * Attempts to restore accessibility focus to the specified date.
679 * @param day The date which should receive focus
680 * @return {@code false} if the date is not valid for this month view, or
681 * {@code true} if the date received focus
798 final CharSequence date
[all...]
H A DSimpleDayPickerView.java17 package com.android.datetimepicker.date;
H A DSimpleMonthAdapter.java17 package com.android.datetimepicker.date;
H A DSimpleMonthView.java17 package com.android.datetimepicker.date;
H A DTextViewWithCircularIndicator.java17 package com.android.datetimepicker.date;
H A DYearPickerView.java17 package com.android.datetimepicker.date;
32 import com.android.datetimepicker.date.DatePickerDialog.OnDateChangedListener;

Completed in 318 milliseconds

12