Home
last modified time | relevance | path

Searched refs:InvalidFormatException (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/calendar/src/com/android/calendarcommon/
DEventRecurrence.java152 public static class InvalidFormatException extends RuntimeException { class in EventRecurrence
153 InvalidFormatException(String s) { in InvalidFormatException() method in EventRecurrence.InvalidFormatException
600 throw new InvalidFormatException("Missing LHS in " + part); in parse()
606 throw new InvalidFormatException("Missing RHS in " + part); in parse()
619 throw new InvalidFormatException("Couldn't find parser for " + lhs); in parse()
623 throw new InvalidFormatException("Part " + lhs + " was specified twice"); in parse()
636 throw new InvalidFormatException("Must specify a FREQ value"); in parse()
642 throw new InvalidFormatException("Must not specify both UNTIL and COUNT: " + recur); in parse()
679 throw new InvalidFormatException("Integer value out of range: " + str); in parseIntRange()
683 throw new InvalidFormatException("Invalid integer value: " + str); in parseIntRange()
[all …]
DRecurrenceSet.java53 throws EventRecurrence.InvalidFormatException { in RecurrenceSet()
71 throws EventRecurrence.InvalidFormatException { in RecurrenceSet()
85 throws EventRecurrence.InvalidFormatException { in RecurrenceSet()
91 throws EventRecurrence.InvalidFormatException { in init()
139 throws EventRecurrence.InvalidFormatException{ in parseRecurrenceDates()
157 throw new EventRecurrence.InvalidFormatException( in parseRecurrenceDates()
/frameworks/opt/calendar/tests/src/com/android/calendarcommon/
DEventRecurrenceTest.java19 import com.android.calendarcommon.EventRecurrence.InvalidFormatException;
343 } catch (EventRecurrence.InvalidFormatException e) { in test12()
748 } catch (InvalidFormatException ife) { in testBasicParse()