Searched refs:mRowCount (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectCalendarsSyncAdapter.java49 private int mRowCount = 0; field in class:SelectCalendarsSyncAdapter
80 mRowCount = 0;
90 mRowCount = c.getCount();
91 mData = new CalendarRow[mRowCount];
117 if (position >= mRowCount) {
159 return mRowCount;
164 if (position >= mRowCount) {
173 if (position >= mRowCount) {
H A DSelectCalendarsSimpleAdapter.java61 private int mRowCount = 0; field in class:SelectCalendarsSimpleAdapter
162 mRowCount = 0;
174 mRowCount = c.getCount();
195 if (position >= mRowCount) {
300 return mRowCount;
304 if (position >= mRowCount) {
312 if (position >= mRowCount) {
/packages/apps/Browser/src/com/android/browser/view/
H A DBookmarkExpandableView.java274 int mRowCount = 1; // assume at least 1 child fits in a row field in class:BookmarkExpandableView.BookmarkAccountAdapter
319 int rowCount = mRowCount;
354 return (int) Math.ceil(adapter.getCount() / (float)mRowCount);
375 boolean notify = rowCount != mRowCount || rowPadding != mRowPadding;
376 mRowCount = rowCount;
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaWindowAdapter.java149 private int mRowCount; field in class:AgendaWindowAdapter
399 return mRowCount;
443 if (position >= (mRowCount - PREFETCH_BOUNDARY)
757 if (mRowCount == 0 || queryType == QUERY_TYPE_CLEAN) {
758 mRowCount = 0;
817 if (mRowCount != 0) {
818 queryDuration = IDEAL_NUM_OF_EVENTS * (end - start + 1) / mRowCount;
874 if (mRowCount < 20 && queryData.queryType != QUERY_TYPE_CLEAN) {
876 Log.e(TAG, "Compacting cursor: mRowCount=" + mRowCount
[all...]

Completed in 948 milliseconds