OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCurrentMonthDisplayed
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Calendar/src/com/android/calendar/month/
SimpleDayPickerFragment.java
114
protected int
mCurrentMonthDisplayed
;
531
if (
mCurrentMonthDisplayed
== 11 && month == 0) {
533
} else if (
mCurrentMonthDisplayed
== 0 && month == 11) {
536
monthDiff = month -
mCurrentMonthDisplayed
;
568
mCurrentMonthDisplayed
= time.month;
570
mAdapter.updateFocusMonth(
mCurrentMonthDisplayed
);
633
mAdapter.updateFocusMonth(
mCurrentMonthDisplayed
);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DayPickerView.java
84
protected int
mCurrentMonthDisplayed
;
272
mCurrentMonthDisplayed
= date.month;
/frameworks/base/core/java/android/widget/
CalendarViewLegacyDelegate.java
206
private int
mCurrentMonthDisplayed
= -1;
878
if (
mCurrentMonthDisplayed
== 11 && month == 0) {
880
} else if (
mCurrentMonthDisplayed
== 0 && month == 11) {
883
monthDiff = month -
mCurrentMonthDisplayed
;
909
mCurrentMonthDisplayed
= calendar.get(Calendar.MONTH);
910
mAdapter.setFocusMonth(
mCurrentMonthDisplayed
);
[
all
...]
Completed in 97 milliseconds