Home | History | Annotate | Download | only in event

Lines Matching refs:startDay

1332         int startDay = startTime.weekDay;
1335 if (day == startDay) {
1344 // We either want the earliest day that is later in the week than startDay ...
1345 if (day > startDay && (day < closestWeekday || closestWeekday < startDay)) {
1348 // ... or if there are no days later than startDay, we want the earliest day that is
1349 // earlier in the week than startDay.
1350 if (closestWeekday == Integer.MAX_VALUE || closestWeekday < startDay) {
1351 // We haven't found a day that's later in the week than startDay yet.
1361 if (closestWeekday < startDay) {
1364 int daysOffset = closestWeekday - startDay;