OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NO_YEAR
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/datepicker/
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;
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;
/packages/apps/Contacts/src/com/android/contacts/editor/
EventFieldEditorView.java
217
oldYear = isYearOptional ? DatePickerDialog.
NO_YEAR
: defaultYear;
236
outCalendar.set(year == DatePickerDialog.
NO_YEAR
? 2000 : year, monthOfYear,
Completed in 33 milliseconds