Home | History | Annotate | Download | only in util

Lines Matching defs:mRow

37     private int mRow;
50 mRow = getRowOf(dayOfMonth);
56 return mRow;
64 mRow = row;
69 return getDayAt(mRow, mColumn);
77 if (isWithinCurrentMonth(mRow, mColumn)) {
80 if (mRow == 0) {
87 mRow = getRowOf(dayOfMonth);
92 return (mRow == row) && (mColumn == column);
101 if (isWithinCurrentMonth(mRow - 1, mColumn)) {
103 mRow--;
108 mRow = 5;
109 while(!isWithinCurrentMonth(mRow, mColumn)) {
110 mRow--;
121 if (isWithinCurrentMonth(mRow + 1, mColumn)) {
123 mRow++;
128 mRow = 0;
129 while (!isWithinCurrentMonth(mRow, mColumn)) {
130 mRow++;
142 mRow--;
148 if (isWithinCurrentMonth(mRow, mColumn)) {
155 mRow = getRowOf(lastDay);
167 mRow++;
173 if (isWithinCurrentMonth(mRow, mColumn)) {
179 mRow = 0;
181 while (!isWithinCurrentMonth(mRow, mColumn)) {