Lines Matching refs:event

29         public int getRecordCount(AccessibilityEvent event);
30 public void appendRecord(AccessibilityEvent event, Object record);
31 public Object getRecord(AccessibilityEvent event, int index);
37 public void appendRecord(AccessibilityEvent event, Object record) {
42 public Object getRecord(AccessibilityEvent event, int index) {
47 public int getRecordCount(AccessibilityEvent event) {
55 public void appendRecord(AccessibilityEvent event, Object record) {
56 AccessibilityEventCompatIcs.appendRecord(event, record);
60 public Object getRecord(AccessibilityEvent event, int index) {
61 return AccessibilityEventCompatIcs.getRecord(event, index);
65 public int getRecordCount(AccessibilityEvent event) {
66 return AccessibilityEventCompatIcs.getRecordCount(event);
81 * Represents the event of a hover enter over a {@link android.view.View}.
86 * Represents the event of a hover exit over a {@link android.view.View}.
91 * Represents the event of starting a touch exploration gesture.
96 * Represents the event of ending a touch exploration gesture.
101 * Represents the event of changing the content of a window.
106 * Represents the event of scrolling a view.
111 * Represents the event of changing the selection in an {@link android.widget.EditText}.
116 * Represents the event of an application making an announcement.
121 * Represents the event of gaining accessibility focus.
126 * Represents the event of clearing accessibility focus.
131 * Represents the event of traversing the text of a view at a given movement granularity.
136 * Represents the event of beginning gesture detection.
141 * Represents the event of ending gesture detection.
146 * Represents the event of the user starting to touch the screen.
151 * Represents the event of the user ending to touch the screen.
189 * Gets the number of records contained in the event.
193 public static int getRecordCount(AccessibilityEvent event) {
194 return IMPL.getRecordCount(event);
199 * event records.
205 public static void appendRecord(AccessibilityEvent event, AccessibilityRecordCompat record) {
206 IMPL.appendRecord(event, record.getImpl());
215 public static AccessibilityRecordCompat getRecord(AccessibilityEvent event, int index) {
216 return new AccessibilityRecordCompat(IMPL.getRecord(event, index));