Home | History | Annotate | Download | only in util

Lines Matching refs:mColumn

38     private int mColumn;
51 mColumn = getColumnOf(dayOfMonth);
60 return mColumn;
65 mColumn = col;
69 return getDayAt(mRow, mColumn);
77 if (isWithinCurrentMonth(mRow, mColumn)) {
88 mColumn = getColumnOf(dayOfMonth);
92 return (mRow == row) && (mColumn == column);
101 if (isWithinCurrentMonth(mRow - 1, mColumn)) {
109 while(!isWithinCurrentMonth(mRow, mColumn)) {
121 if (isWithinCurrentMonth(mRow + 1, mColumn)) {
129 while (!isWithinCurrentMonth(mRow, mColumn)) {
141 if (mColumn == 0) {
143 mColumn = 6;
145 mColumn--;
148 if (isWithinCurrentMonth(mRow, mColumn)) {
156 mColumn = getColumnOf(lastDay);
166 if (mColumn == 6) {
168 mColumn = 0;
170 mColumn++;
173 if (isWithinCurrentMonth(mRow, mColumn)) {
180 mColumn = 0;
181 while (!isWithinCurrentMonth(mRow, mColumn)) {
182 mColumn++;