/external/libgdx/gdx/src/com/badlogic/gdx/ |
InputAdapter.java | 39 public boolean touchUp (int screenX, int screenY, int pointer, int button) {
|
InputProcessor.java | 58 public boolean touchUp (int screenX, int screenY, int pointer, int button);
|
InputMultiplexer.java | 94 public boolean touchUp (int screenX, int screenY, int pointer, int button) {
96 if (processors.get(i).touchUp(screenX, screenY, pointer, button)) return true;
|
InputEventQueue.java | 81 localProcessor.touchUp(q.get(i++), q.get(i++), q.get(i++), q.get(i++));
134 public synchronized boolean touchUp (int screenX, int screenY, int pointer, int button) {
|
/external/replicaisland/src/com/replica/replicaisland/ |
SingleTouchFilter.java | 10 sSystemRegistry.inputSystem.touchUp(0, event.getRawX() * (1.0f / params.viewScaleX),
|
MultiTouchFilter.java | 22 BaseObject.sSystemRegistry.inputSystem.touchUp(id,
|
InputSystem.java | 59 public void touchUp(int index, float x, float y) {
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ |
InputListener.java | 31 * public void touchUp (InputEvent event, float x, float y, int pointer, int button) {
57 case touchUp:
58 touchUp(event, tmpCoords.x, tmpCoords.y, event.getPointer(), event.getButton());
78 * touchDragged and touchUp events, even those not over this actor, until touchUp is received. Also when true is returned, the
86 * button or touch. The touchUp event is always {@link Event#handle() handled}.
88 public void touchUp (InputEvent event, float x, float y, int pointer, int button) {
|
InputEvent.java | 37 /** The stage x coordinate where the event occurred. Valid for: touchDown, touchDragged, touchUp, mouseMoved, enter, and exit. */
46 /** The stage x coordinate where the event occurred. Valid for: touchDown, touchDragged, touchUp, mouseMoved, enter, and exit. */
65 * touchDown, touchDragged, touchUp, enter, and exit. */
74 /** The index for the mouse button pressed. Always 0 on Android. Valid for: touchDown and touchUp.
130 /** Returns true of this event is a touchUp triggered by {@link Stage#cancelTouchFocus()}. */
144 touchUp,
|
/external/droiddriver/src/io/appium/droiddriver/actions/ |
ClickAction.java | 61 Events.touchUp(injector, downTime, elementRect.centerX(), elementRect.centerY()); 78 Events.touchUp(injector, downTime, elementRect.centerX(), elementRect.centerY());
|
SwipeAction.java | 206 Events.touchUp(injector, downTime, endX, endY);
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/ |
ActorGestureListener.java | 109 case touchUp:
113 detector.touchUp(event.getStageX(), event.getStageY(), event.getPointer(), event.getButton());
115 touchUp(event, tmpCoords.x, tmpCoords.y, event.getPointer(), event.getButton());
129 public void touchUp (InputEvent event, float x, float y, int pointer, int button) {
|
DragListener.java | 62 public void touchUp (InputEvent event, float x, float y, int pointer, int button) {
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
OnscreenKeyboardTest.java | 78 public boolean touchUp (int x, int y, int pointer, int button) {
|
InputTest.java | 87 public boolean touchUp (int x, int y, int pointer, int button) {
|
Box2DTestCollection.java | 113 public boolean touchUp (int x, int y, int pointer, int button) {
114 tests[testIndex].touchUp(x, y, pointer, button);
|
BulletTestCollection.java | 155 public boolean touchUp (int x, int y, int pointer, int button) { 156 return tests[testIndex].touchUp(x, y, pointer, button);
|
PathTest.java | 169 public boolean touchUp (int screenX, int screenY, int pointer, int button) { 171 return super.touchUp(screenX, screenY, pointer, button);
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/utils/ |
OrthoCamController.java | 46 public boolean touchUp (int x, int y, int pointer, int button) {
|
PerspectiveCamController.java | 53 public boolean touchUp (int x, int y, int pointer, int button) {
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
MaterialTest.java | 109 public boolean touchUp (int screenX, int screenY, int pointer, int button) { 120 return super.touchUp(screenX, screenY, pointer, button);
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ |
BulletTest.java | 58 public boolean touchUp (int screenX, int screenY, int pointer, int button) {
|
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
InteractionController.java | 220 if (touchUp(x, y)) 277 touchUp(x, y); 297 if(touchUp(x, y)) { 315 private boolean touchUp(int x, int y) { 317 Log.d(LOG_TAG, "touchUp (" + x + ", " + y + ")"); 467 ret &= touchUp(upX, upY); 512 ret &= touchUp(segments[segments.length - 1].x, segments[segments.length -1].y);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/ |
CameraInputController.java | 170 public boolean touchUp (int screenX, int screenY, int pointer, int button) {
174 return super.touchUp(screenX, screenY, pointer, button) || activatePressed;
|
/external/libgdx/gdx/src/com/badlogic/gdx/input/ |
GestureDetector.java | 166 public boolean touchUp (int x, int y, int pointer, int button) {
167 return touchUp((float)x, (float)y, pointer, button);
170 public boolean touchUp (float x, float y, int pointer, int button) {
|