Home | History | Annotate | Download | only in calendarcommon2

Lines Matching defs:SU

41     public static final int SU = 0x00010000;
55 public int wkst; // SU, MO, TU, etc.
129 sParseWeekdayMap.put("SU", SU);
164 * Converts one of the Calendar.SUNDAY constants to the SU, MO, etc.
173 return SU;
196 return SU;
217 case SU:
237 * Converts one of the SU, MO, etc. constants to the Calendar.SUNDAY
245 case SU:
265 * Converts one of the internal day constants (SU, MO, etc.) to the
268 * @param day one the internal constants SU, MO, etc.
269 * @return the two-letter string for the day ("SU", "MO", etc.)
276 case SU:
277 return "SU";
408 if (day == SU || day == SA) {
557 * FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=1SU,-1SU
800 /** parses BYDAY=bywdaylist, e.g. "1SU,-1SU" */
896 /** parses WKST={SU,MO,...} */