HomeSort by relevance Sort by last modified time
    Searched refs:ACTION_UP (Results 1 - 25 of 249) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/tests/coretests/src/android/util/
KeyUtils.java 49 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_MENU));
68 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, shortcutKeyCode));
69 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_MENU));
86 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_CENTER));
  /external/replicaisland/src/com/replica/replicaisland/
SingleTouchFilter.java 9 if (event.getAction() == MotionEvent.ACTION_UP) {
MultiTouchFilter.java 20 actualEvent == MotionEvent.ACTION_UP ||
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ContactsFilterInstrumentation.java 61 sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_M));
63 sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_A));
ContactsSelectInstrumentation.java 68 KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_DOWN));
72 KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_CENTER));
LocalSampleInstrumentation.java 74 sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_SHIFT_LEFT));
  /packages/apps/Calculator/src/com/android/calculator2/
EventListener.java 94 if (action == KeyEvent.ACTION_UP) {
104 if (keyEvent.isPrintingKey() && action == KeyEvent.ACTION_UP) {
118 if (action == KeyEvent.ACTION_UP) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
SuddenJumpingTouchEventHandler.java 89 if (action == MotionEvent.ACTION_UP) mDisableDisambiguation = false;
110 MotionEvent.ACTION_UP,
121 case MotionEvent.ACTION_UP:
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DownUpDetector.java 50 case MotionEvent.ACTION_UP:
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidateViewButton.java 57 case MotionEvent.ACTION_UP:
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 126 injectKeyEvent(new KeyEvent(now, now, KeyEvent.ACTION_UP, keyCode, 0, 0,
133 injectPointerEvent(MotionEvent.obtain(now, now, MotionEvent.ACTION_UP, x, y, 0));
145 injectPointerEvent(MotionEvent.obtain(now, now, MotionEvent.ACTION_UP, x2, y2, 0));
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 96 return (getAction() == KeyEvent.ACTION_UP);
103 if (mAction == KeyEvent.ACTION_UP) {
104 note = "ACTION_UP";
MonkeyMotionEvent.java 146 return (getAction() == MotionEvent.ACTION_UP);
162 case MotionEvent.ACTION_UP:
163 msg.append("ACTION_UP");
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
ScreenshotTest.java 114 getInstrumentation().sendKeySync(new KeyEvent(KeyEvent.ACTION_UP,
116 getInstrumentation().sendKeySync(new KeyEvent(KeyEvent.ACTION_UP,
  /frameworks/base/core/java/android/view/
TouchDelegate.java 122 case MotionEvent.ACTION_UP:
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 241 sendEvent(KeyEvent.ACTION_UP, KeyEvent.FLAG_CANCELED);
247 case MotionEvent.ACTION_UP:
252 sendEvent(KeyEvent.ACTION_UP, 0);
256 sendEvent(KeyEvent.ACTION_UP, KeyEvent.FLAG_CANCELED);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAppWidgetHostView.java 83 case MotionEvent.ACTION_UP:
  /packages/apps/Camera/src/com/android/camera/ui/
InLineSettingKnob.java 71 } else if (event.getAction() == MotionEvent.ACTION_UP
89 } else if (event.getAction() == MotionEvent.ACTION_UP
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingKnob.java 70 } else if (event.getAction() == MotionEvent.ACTION_UP
87 } else if (event.getAction() == MotionEvent.ACTION_UP
  /frameworks/base/core/java/android/widget/
ZoomButton.java 61 || (event.getAction() == MotionEvent.ACTION_UP)) {
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridScrollListenerTest.java 80 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP,
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListScrollListenerTest.java 77 KeyEvent up = new KeyEvent(0, 0, KeyEvent.ACTION_UP,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationPanelTitle.java 77 case MotionEvent.ACTION_UP:
  /frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
FountainFboView.java 61 if (act == ev.ACTION_UP) {
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SceneGraphView.java 87 if (act == ev.ACTION_UP) {

Completed in 5907 milliseconds

1 2 3 4 5 6 7 8 910