Home | History | Annotate | Download | only in test

Lines Matching full:keys

246      * of keys is a string containing the key names as specified in KeyEvent, without the
251 * @param keysSequence The sequence of keys.
254 final String[] keys = keysSequence.split(" ");
255 final int count = keys.length;
260 String key = keys[i];
303 * @param keys The series of key codes to send through instrumentation.
305 public void sendKeys(int... keys) {
306 final int count = keys.length;
311 instrumentation.sendKeyDownUpSync(keys[i]);
327 * @param keys The series of key repeats and codes to send through instrumentation.
329 public void sendRepeatedKeys(int... keys) {
330 final int count = keys.length;
332 throw new IllegalArgumentException("The size of the keys array must "
339 final int keyCount = keys[i];
340 final int keyCode = keys[i + 1];