Home
last modified time | relevance | path

Searched refs:mRowInfo (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/agenda/
DAgendaByDayAdapter.java49 private ArrayList<RowInfo> mRowInfo; field in AgendaByDayAdapter
84 if (mRowInfo == null || position >= mRowInfo.size()) { in getInstanceId()
87 return mRowInfo.get(position).mInstanceId; in getInstanceId()
91 if (mRowInfo == null || position >= mRowInfo.size()) { in getStartTime()
94 return mRowInfo.get(position).mEventStartTimeMilli; in getStartTime()
100 if (mRowInfo == null || position >= mRowInfo.size()) { in getHeaderPosition()
105 RowInfo row = mRowInfo.get(i); in getHeaderPosition()
114 if (mRowInfo == null) { in getHeaderItemsCount()
118 for (int i = position +1; i < mRowInfo.size(); i++) { in getHeaderItemsCount()
119 if (mRowInfo.get(i).mType != TYPE_MEETING) { in getHeaderItemsCount()
[all …]