Home | History | Annotate | Download | only in util

Lines Matching refs:row

23  * 6 row calendar grid format.
111 * @param row Which row (0-5).
115 public int[] getDigitsForRow(int row) {
116 if (row < 0 || row > 5) {
117 throw new IllegalArgumentException("row " + row
123 result[column] = getDayAt(row, column);
130 * @param row The row, 0-5, starting from the top.
132 * @return The day at a particular row, column
134 public int getDayAt(int row, int column) {
136 if (row == 0 && column < mOffset) {
140 int day = 7 * row + column - mOffset + 1;
147 * @return Which row day is in.
177 * @return Whether the row and column fall within the month.
179 public boolean isWithinCurrentMonth(int row, int column) {
181 if (row < 0 || column < 0 || row > 5 || column > 6) {
185 if (row == 0 && column < mOffset) {
189 int day = 7 * row + column - mOffset + 1;