Home
last modified time | relevance | path

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

/frameworks/opt/calendar/src/com/android/calendarcommon2/
DEventRecurrence.java152 public static class InvalidFormatException extends RuntimeException { class in EventRecurrence
153 InvalidFormatException(String s) { in InvalidFormatException() method in EventRecurrence.InvalidFormatException
608 throw new InvalidFormatException("Missing LHS in " + part); in parse()
614 throw new InvalidFormatException("Missing RHS in " + part); in parse()
627 throw new InvalidFormatException("Couldn't find parser for " + lhs); in parse()
631 throw new InvalidFormatException("Part " + lhs + " was specified twice"); in parse()
644 throw new InvalidFormatException("Must specify a FREQ value"); in parse()
650 throw new InvalidFormatException("Must not specify both UNTIL and COUNT: " + recur); in parse()
687 throw new InvalidFormatException("Integer value out of range: " + str); in parseIntRange()
691 throw new InvalidFormatException("Invalid integer value: " + str); in parseIntRange()
[all …]
DRecurrenceSet.java54 throws EventRecurrence.InvalidFormatException { in RecurrenceSet()
72 throws EventRecurrence.InvalidFormatException { in RecurrenceSet()
86 throws EventRecurrence.InvalidFormatException { in RecurrenceSet()
92 throws EventRecurrence.InvalidFormatException { in init()
148 throws EventRecurrence.InvalidFormatException{ in parseRecurrenceDates()
166 throw new EventRecurrence.InvalidFormatException( in parseRecurrenceDates()
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DEventRecurrenceTest.java19 import com.android.calendarcommon2.EventRecurrence.InvalidFormatException;
343 } catch (EventRecurrence.InvalidFormatException e) { in test12()
882 } catch (InvalidFormatException ife) { in testBasicParse()