Home | History | Annotate | Download | only in util

Lines Matching refs:day

44      * @param weekStartDay What day of the week the week should start.
85 * @return The first day of the month using a constants such as
102 * box. For example, if the calendar is set to display the first day of
132 * @return The day at a particular row, column
140 int day = 7 * row + column - mOffset + 1;
142 return (day > mNumDaysInMonth) ?
143 day - mNumDaysInMonth : day;
147 * @return Which row day is in.
149 public int getRowOf(int day) {
150 return (day + mOffset - 1) / 7;
154 * @return Which column day is in.
156 public int getColumnOf(int day) {
157 return (day + mOffset - 1) % 7;
189 int day = 7 * row + column - mOffset + 1;
190 if (day > mNumDaysInMonth) {