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 50 public static int NO_YEAR = DatePicker.NO_YEAR;
72 * @param year The year that was set or {@link DatePickerDialog#NO_YEAR} if the user has
99 * @param year The initial year of the dialog or {@link DatePickerDialog#NO_YEAR} if no year
121 * @param year The initial year of the dialog or {@link DatePickerDialog#NO_YEAR} if no year
139 * @param year The initial year of the dialog or {@link DatePickerDialog#NO_YEAR} if no
216 year == NO_YEAR ? mTitleNoYearDateFormat : mTitleDateFormat;
DatePicker.java 61 public static int NO_YEAR = 0;
91 * @param year The year that was set or {@link DatePicker#NO_YEAR} if no year was set
247 mYear = (mYearOptional && year == NO_YEAR) ? getCurrentYear() : year;
381 * @param year The initial year or {@link #NO_YEAR} if no year has been specified
389 mYear = (yearOptional && year == NO_YEAR) ? getCurrentYear() : year;
393 mHasYear = yearOptional ? (year != NO_YEAR) : true;
422 return (mYearOptional && !mHasYear) ? NO_YEAR : mYear;
450 int year = (mYearOptional && !mHasYear) ? NO_YEAR : mYear;

Completed in 133 milliseconds