HomeSort by relevance Sort by last modified time
    Searched defs:buttonIndex (Results 1 - 4 of 4) sorted by null

  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
InputSystemJme.java 59 private int buttonIndex;
136 nic.processMouseEvent(x, y, evt.getDeltaWheel(), buttonIndex, pressed);
147 buttonIndex = evt.getButtonIndex();
161 consumed = nic.processMouseEvent(x, y, 0, buttonIndex, pressed);
  /cts/tests/src/android/app/cts/
DialogStubActivity.java 70 public static int buttonIndex;
171 buttonIndex = msg.what;
  /packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java 497 final int buttonIndex = parent.indexOfChild(v);
512 if (buttonIndex > 0) {
513 parent.getChildAt(buttonIndex - 1).requestFocus();
523 if (buttonIndex < (buttonCount - 1)) {
524 parent.getChildAt(buttonIndex + 1).requestFocus();
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java 496 final int buttonIndex = parent.indexOfChild(v);
511 if (buttonIndex > 0) {
512 parent.getChildAt(buttonIndex - 1).requestFocus();
522 if (buttonIndex < (buttonCount - 1)) {
523 parent.getChildAt(buttonIndex + 1).requestFocus();
    [all...]

Completed in 785 milliseconds