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

/packages/apps/Calculator/src/com/android/calculator2/
H A DCalculatorPadLayout.java31 private int mRowCount; field in class:CalculatorPadLayout
47 mRowCount = a.getInt(0, 1);
69 Math.round((float) (bottom - top - paddingTop - paddingBottom)) / mRowCount;
96 rowIndex = (rowIndex + (columnIndex + 1) / mColumnCount) % mRowCount;
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectCalendarsSyncAdapter.java60 private int mRowCount = 0; field in class:SelectCalendarsSyncAdapter
107 mRowCount = 0;
119 mRowCount = c.getCount();
120 mData = new CalendarRow[mRowCount];
148 if (position >= mRowCount) {
230 return mRowCount;
235 if (position >= mRowCount) {
244 if (position >= mRowCount) {
H A DSelectCalendarsSimpleAdapter.java65 private int mRowCount = 0; field in class:SelectCalendarsSimpleAdapter
180 mRowCount = 0;
194 mRowCount = c.getCount();
218 if (position >= mRowCount) {
350 return mRowCount;
355 if (position >= mRowCount) {
364 if (position >= mRowCount) {
/packages/apps/Browser/src/com/android/browser/view/
H A DBookmarkExpandableView.java277 int mRowCount = 1; // assume at least 1 child fits in a row field in class:BookmarkExpandableView.BookmarkAccountAdapter
322 int rowCount = mRowCount;
357 return (int) Math.ceil(adapter.getCount() / (float)mRowCount);
378 boolean notify = rowCount != mRowCount || rowPadding != mRowPadding;
379 mRowCount = rowCount;
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaWindowAdapter.java151 private int mRowCount; field in class:AgendaWindowAdapter
408 return mRowCount;
452 if (position >= (mRowCount - PREFETCH_BOUNDARY)
784 if (mRowCount == 0 || queryType == QUERY_TYPE_CLEAN) {
785 mRowCount = 0;
844 if (mRowCount != 0) {
845 queryDuration = IDEAL_NUM_OF_EVENTS * (end - start + 1) / mRowCount;
901 if (mRowCount < 20 && queryData.queryType != QUERY_TYPE_CLEAN) {
903 Log.e(TAG, "Compacting cursor: mRowCount=" + mRowCount
[all...]

Completed in 126 milliseconds