Searched defs:date (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterDateArgument.java26 public final Date date; field in class:KeymasterDateArgument
28 public KeymasterDateArgument(int tag, Date date) { argument
34 throw new IllegalArgumentException("Bad date tag " + tag);
36 this.date = date;
41 date = new Date(in.readLong());
46 out.writeLong(date.getTime());
/frameworks/base/include/androidfw/
H A DZipUtils.h71 const uint32_t date = when >> 16; local
74 timespec->tm_year = ((date >> 9) & 0x7F) + 80; // Zip is years since 1980
75 timespec->tm_mon = ((date >> 5) & 0x0F) - 1;
76 timespec->tm_mday = date & 0x1F;
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DCalendarViewBindingAdapter.java26 @InverseBindingMethod(type = CalendarView.class, attribute = "android:date"),
29 @BindingAdapter("android:date")
30 public static void setDate(CalendarView view, long date) { argument
31 if (view.getDate() != date) {
32 view.setDate(date);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DSimpleDayPickerView.java17 package com.android.datetimepicker.date;
H A DSimpleMonthAdapter.java17 package 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 DSimpleMonthView.java17 package com.android.datetimepicker.date;
H A DTextViewWithCircularIndicator.java17 package com.android.datetimepicker.date;
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 DYearPickerView.java17 package com.android.datetimepicker.date;
32 import com.android.datetimepicker.date.DatePickerDialog.OnDateChangedListener;
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 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...]
/frameworks/base/tools/preload2/src/com/android/preload/
H A DDumpData.java43 Date date; field in class:DumpData
51 public DumpData(String packageName, Map<String, String> dumpData, Date date) { argument
54 this.date = date;
64 return date;
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DObexTime.java78 public ObexTime(Date date) { argument
79 mDate = date;
/frameworks/base/core/java/android/widget/
H A DCalendarViewMaterialDelegate.java93 public void setDate(long date) { argument
94 mDayPickerView.setDate(date, true);
98 public void setDate(long date, boolean animate, boolean center) { argument
99 mDayPickerView.setDate(date, animate);
H A DCalendarView.java49 * can select a date by tapping on it and can scroll or fling the calendar to a
50 * desired date.
76 * The callback used to indicate the user changes the date.
183 * @param color The focused month date color.
196 * @return The focused month date color.
210 * @param color A not focused month date color.
223 * @return A not focused month date color.
290 * the end of the selected date.
304 * the end of the selected date.
318 * the end of the selected date
526 setDate(long date) argument
544 setDate(long date, boolean animate, boolean center) argument
605 setDate(long date) argument
606 setDate(long date, boolean animate, boolean center) argument
756 parseDate(String date, Calendar outDate) argument
[all...]
H A DDatePickerSpinnerDelegate.java150 // now set the date to the adjusted one
202 // set the min date giving priority of the minDate over startYear
213 // set the max date giving priority of the maxDate over endYear
224 // initialize to current date
229 // re-order the number spinners to match the current date format
427 // We're in a locale where a date should either be all-numeric, or all-text.
462 * Reorders the spinners according to the date format that is
494 * Parses the given <code>date</code> and in case of success sets the result
497 * @return True if the date was parsed.
499 private boolean parseDate(String date, Calenda argument
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DDelegatingX509Certificate.java73 public void checkValidity(Date date) throws CertificateExpiredException, argument
75 mDelegate.checkValidity(date);
H A DKeyGenParameterSpec.java396 * Returns the start date to be used on the X.509 certificate that will be put in the
405 * Returns the end date to be used on the X.509 certificate that will be put in the
762 * <p>By default, this date is {@code Jan 1 1970}.
765 public Builder setCertificateNotBefore(@NonNull Date date) { argument
766 if (date == null) {
767 throw new NullPointerException("date == null");
769 mCertificateNotBefore = Utils.cloneIfNotNull(date);
777 * <p>By default, this date is {@code Jan 1 2048}.
780 public Builder setCertificateNotAfter(@NonNull Date date) { argument
781 if (date
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGuidedDatePickerAction.java24 * Subclass of GuidedAction that can choose a date. The Action is editable by default; to make it
51 * Sets format of date Picker or null for default. The format is a case insensitive String
63 * Sets a Date for date picker in milliseconds since January 1, 1970 00:00:00 in
67 public B date(long date) { argument
68 mDate = date;
73 * Sets minimal Date for date picker in milliseconds since January 1, 1970 00:00:00 in
83 * Sets maximum Date for date picker in milliseconds since January 1, 1970 00:00:00 in
134 * Returns format of date Picker or null if not specified. The format is a case insensitive
156 * @param date Ne
158 setDate(long date) argument
[all...]
/frameworks/base/core/java/android/net/http/
H A DSslCertificate.java50 * SimpleDateFormat pattern for an ISO 8601 date
65 * Not-before date from the validity period
70 * Not-after date from the validity period
149 * @param validNotBefore The not-before date from the certificate
151 * @param validNotAfter The not-after date from the certificate
165 * @param validNotBefore The not-before date from the certificate validity period
166 * @param validNotAfter The not-after date from the certificate validity period
199 * @return Not-before date from the certificate validity period or
207 * @return Not-before date from the certificate validity period in
218 * @return Not-after date fro
320 formatDate(Date date) argument
330 cloneDate(Date date) argument
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h43 char date[12]; ///< File date, decimal seconds since Epoch member in struct:mcld::Archive::MemberHeader
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
H A DDatePicker.java37 * This class is a widget for selecting a date. The date can be selected by a
112 private boolean parseDate(String date, Calendar outDate) { argument
114 outDate.setTime(mDateFormat.parse(date));
117 Log.w(LOG_TAG, "Date: " + date + " not in format: " + DATE_FORMAT);
227 * Sets the minimal date supported by this {@link DatePicker} in
231 * @param minDate The minimal supported date.
248 * Gets the minimal date supported by this {@link DatePicker} in
252 * Note: The default minimal date is 01/01/1900.
255 * @return The minimal supported date
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
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...]

Completed in 601 milliseconds

12