Home | History | Annotate | Download | only in event

Lines Matching refs:startDay

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