Home | History | Annotate | Download | only in calendarcommon

Lines Matching refs:until

52     public String    until;
83 sParsePartMap.put("UNTIL", new ParseUntil());
141 /** If set, validate the value of UNTIL parts. Minor performance impact. */
144 /** If set, require that only one of {UNTIL,COUNT} is present. Breaks compat w/ old parser. */
351 if (!TextUtils.isEmpty(this.until)) {
352 s.append(";UNTIL=");
353 s.append(until);
481 (until == null ? er.until == null : until.equals(er.until)) &&
505 * The original parser always set all of the "count" fields, "wkst", and "until",
514 until = null;
531 * ; either UNTIL or COUNT may appear in a 'recur',
532 * ; but UNTIL and COUNT MUST NOT occur in the same 'recur'
534 * ( ";" "UNTIL" "=" enddate ) /
568 * though x-[name] would require special treatment), and we have either UNTIL or COUNT
580 * - enforces that only one of UNTIL and COUNT may be specified
582 * - improved validation on various values (e.g. UNTIL timestamps)
647 // Can't have both UNTIL and COUNT.
650 throw new InvalidFormatException("Must not specify both UNTIL and COUNT: " + recur);
652 Log.w(TAG, "Warning: rrule has both UNTIL and COUNT: " + recur);
735 /** parses UNTIL=enddate, e.g. "19970829T021400" */
741 Time until = new Time();
742 until.parse(value);
744 throw new InvalidFormatException("Invalid UNTIL value: " + value);
747 er.until = value;