HomeSort by relevance Sort by last modified time
    Searched defs:NO_YEAR (Results 1 - 2 of 2) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 51 public static int NO_YEAR = DatePicker.NO_YEAR;
73 * @param year The year that was set or {@link DatePickerDialog#NO_YEAR} if the user has
100 * @param year The initial year of the dialog or {@link DatePickerDialog#NO_YEAR} if no year
122 * @param year The initial year of the dialog or {@link DatePickerDialog#NO_YEAR} if no year
140 * @param year The initial year of the dialog or {@link DatePickerDialog#NO_YEAR} if no
218 year == NO_YEAR ? mTitleNoYearDateFormat : mTitleDateFormat;
DatePicker.java 58 public static int NO_YEAR = 0;
88 * @param year The year that was set or {@link DatePicker#NO_YEAR} if no year was set
284 mYear = (mYearOptional && year == NO_YEAR) ? getCurrentYear() : year;
418 * @param year The initial year or {@link #NO_YEAR} if no year has been specified
426 mYear = (yearOptional && year == NO_YEAR) ? getCurrentYear() : year;
430 mHasYear = yearOptional ? (year != NO_YEAR) : true;
459 return (mYearOptional && !mHasYear) ? NO_YEAR : mYear;
487 int year = (mYearOptional && !mHasYear) ? NO_YEAR : mYear;

Completed in 90 milliseconds