Home | History | Annotate | Download | only in util

Lines Matching defs:events

34  * {@link InputMethodManager#dispatchKeyEventFromInputMethod(View, KeyEvent)} to send the events.
35 * After sending the events waits for idle.
42 * Sends the key events corresponding to the text to the app being instrumented.
54 KeyEvent[] events = getKeyEvents(text);
56 if (events != null) {
57 for (int i = 0; i < events.length; i++) {
60 // time stamp and the system rejects too old events. Hence, it is
64 events[i], SystemClock.uptimeMillis(), 0 /* newRepeat */));
70 * Sends a series of key events through instrumentation. For instance:
93 * Sends a series of key events through instrumentation. The sequence of keys is a string
147 * Sends an up and down key events.