Home | History | Annotate | Download | only in calendar

Lines Matching defs:mColumn

40     private int mColumn;
53 mColumn = getColumnOf(dayOfMonth);
62 return mColumn;
67 mColumn = col;
71 return getDayAt(mRow, mColumn);
79 if (isWithinCurrentMonth(mRow, mColumn)) {
90 mColumn = getColumnOf(dayOfMonth);
94 return (mRow == row) && (mColumn == column);
103 if (isWithinCurrentMonth(mRow - 1, mColumn)) {
111 while(!isWithinCurrentMonth(mRow, mColumn)) {
123 if (isWithinCurrentMonth(mRow + 1, mColumn)) {
131 while (!isWithinCurrentMonth(mRow, mColumn)) {
143 if (mColumn == 0) {
145 mColumn = 6;
147 mColumn--;
150 if (isWithinCurrentMonth(mRow, mColumn)) {
158 mColumn = getColumnOf(lastDay);
168 if (mColumn == 6) {
170 mColumn = 0;
172 mColumn++;
175 if (isWithinCurrentMonth(mRow, mColumn)) {
182 mColumn = 0;
183 while (!isWithinCurrentMonth(mRow, mColumn)) {
184 mColumn++;