Home | History | Annotate | Download | only in calendar

Lines Matching defs:mRow

39     private int mRow;
52 mRow = getRowOf(dayOfMonth);
58 return mRow;
66 mRow = row;
71 return getDayAt(mRow, mColumn);
79 if (isWithinCurrentMonth(mRow, mColumn)) {
82 if (mRow == 0) {
89 mRow = getRowOf(dayOfMonth);
94 return (mRow == row) && (mColumn == column);
103 if (isWithinCurrentMonth(mRow - 1, mColumn)) {
105 mRow--;
110 mRow = 5;
111 while(!isWithinCurrentMonth(mRow, mColumn)) {
112 mRow--;
123 if (isWithinCurrentMonth(mRow + 1, mColumn)) {
125 mRow++;
130 mRow = 0;
131 while (!isWithinCurrentMonth(mRow, mColumn)) {
132 mRow++;
144 mRow--;
150 if (isWithinCurrentMonth(mRow, mColumn)) {
157 mRow = getRowOf(lastDay);
169 mRow++;
175 if (isWithinCurrentMonth(mRow, mColumn)) {
181 mRow = 0;
183 while (!isWithinCurrentMonth(mRow, mColumn)) {