/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/ |
D | IOSInput.java | 92 long[] touchDown = new long[MAX_TOUCHES]; field in IOSInput 314 if (touchDown[pointer] != 0) { in isTouched() 328 return touchDown[pointer] != 0; in isTouched() 612 …if (inputProcessor != null) inputProcessor.touchDown(event.x, event.y, event.pointer, Buttons.LEFT… in processEvents() 631 for (int i = 0; i < touchDown.length; i++) { in getFreePointer() 632 if (touchDown[i] == 0) return i; in getFreePointer() 639 for (int i = 0; i < touchDown.length; i++) { in findPointer() 640 if (touchDown[i] == ptr) return i; in findPointer() 685 touchDown[event.pointer] = touch.getHandle(); in toTouchEvents() 703 touchDown[event.pointer] = 0; in toTouchEvents()
|
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/ |
D | IOSInput.java | 63 UITouch[] touchDown = new UITouch[MAX_TOUCHES]; field in IOSInput 259 if (touchDown[pointer] != null) { in isTouched() 273 return touchDown[pointer] != null; in isTouched() 545 …if (inputProcessor != null) inputProcessor.touchDown(event.x, event.y, event.pointer, Buttons.LEFT… in processEvents() 564 for (int i = 0; i < touchDown.length; i++) { in getFreePointer() 565 if (touchDown[i] == null) return i; in getFreePointer() 572 for (int i = 0; i < touchDown.length; i++) { in findPointer() 573 if (touchDown[i] == touch) return i; in findPointer() 601 touchDown[event.pointer] = touch; in toTouchEvents() 619 touchDown[event.pointer] = null; in toTouchEvents()
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ |
D | InputListener.java | 55 case touchDown: in handle() 56 return touchDown(event, tmpCoords.x, tmpCoords.y, event.getPointer(), event.getButton()); in handle() 81 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in touchDown() method in InputListener
|
D | InputEvent.java | 142 touchDown, enumConstant
|
/external/libgdx/gdx/src/com/badlogic/gdx/input/ |
D | GestureDetector.java | 85 public boolean touchDown (int x, int y, int pointer, int button) { in touchDown() method in GestureDetector 86 return touchDown((float)x, (float)y, pointer, button); in touchDown() 89 public boolean touchDown (float x, float y, int pointer, int button) { in touchDown() method in GestureDetector 121 return listener.touchDown(x, y, pointer, button); in touchDown() 286 public boolean touchDown (float x, float y, int pointer, int button); in touchDown() method 332 public boolean touchDown (float x, float y, int pointer, int button) { in touchDown() method in GestureDetector.GestureAdapter
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/ |
D | ActorGestureListener.java | 102 case touchDown: in handle() 105 detector.touchDown(event.getStageX(), event.getStageY(), event.getPointer(), event.getButton()); in handle() 107 touchDown(event, tmpCoords.x, tmpCoords.y, event.getPointer(), event.getButton()); in handle() 126 public void touchDown (InputEvent event, float x, float y, int pointer, int button) { in touchDown() method in ActorGestureListener
|
D | DragListener.java | 34 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in touchDown() method in DragListener
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
D | StageTest.java | 90 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in create() 104 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in create() 115 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in create() 234 public boolean touchDown (int x, int y, int pointer, int button) { in touchDown() method in StageTest 235 return ui.touchDown(x, y, pointer, button); in touchDown()
|
D | BulletTestCollection.java | 145 public boolean touchDown (int x, int y, int pointer, int button) { in touchDown() method in BulletTestCollection 146 return tests[testIndex].touchDown(x, y, pointer, button); in touchDown() 170 public boolean touchDown (float x, float y, int pointer, int button) { in touchDown() method in BulletTestCollection 171 return tests[testIndex].touchDown(x, y, pointer, button); in touchDown()
|
D | Box2DTestCollection.java | 101 public boolean touchDown (int x, int y, int pointer, int button) { in touchDown() method in Box2DTestCollection 102 tests[testIndex].touchDown(x, y, pointer, button); in touchDown() 129 public boolean touchDown (float x, float y, int pointer, int button) { in touchDown() method in Box2DTestCollection
|
D | TableLayoutTest.java | 62 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in create() 82 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in create()
|
D | OnscreenKeyboardTest.java | 73 public boolean touchDown (int x, int y, int pointer, int button) { in touchDown() method in OnscreenKeyboardTest
|
D | SimpleAnimationTest.java | 77 public boolean touchDown (int x, int y, int pointer, int button) { in touchDown() method in SimpleAnimationTest
|
/external/droiddriver/src/io/appium/droiddriver/actions/ |
D | ClickAction.java | 58 long downTime = Events.touchDown(injector, elementRect.centerX(), elementRect.centerY()); in perform() 74 long downTime = Events.touchDown(injector, elementRect.centerX(), elementRect.centerY()); in perform()
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ |
D | BulletTest.java | 53 public boolean touchDown (int screenX, int screenY, int pointer, int button) { in touchDown() method in BulletTest 102 public boolean touchDown (float x, float y, int pointer, int button) { in touchDown() method in BulletTest
|
/external/libgdx/gdx/src/com/badlogic/gdx/ |
D | InputMultiplexer.java | 88 public boolean touchDown (int screenX, int screenY, int pointer, int button) { in touchDown() method in InputMultiplexer 90 if (processors.get(i).touchDown(screenX, screenY, pointer, button)) return true; in touchDown()
|
D | InputEventQueue.java | 78 localProcessor.touchDown(q.get(i++), q.get(i++), q.get(i++), q.get(i++)); in drain() 124 public synchronized boolean touchDown (int screenX, int screenY, int pointer, int button) { in touchDown() method in InputEventQueue
|
D | InputAdapter.java | 35 public boolean touchDown (int screenX, int screenY, int pointer, int button) { in touchDown() method in InputAdapter
|
D | InputProcessor.java | 52 public boolean touchDown (int screenX, int screenY, int pointer, int button); in touchDown() method
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/ |
D | CameraInputController.java | 82 public boolean touchDown (float x, float y, int pointer, int button) { in touchDown() method in CameraInputController.CameraGestureListener 156 public boolean touchDown (int screenX, int screenY, int pointer, int button) { in touchDown() method in CameraInputController 166 …return super.touchDown(screenX, screenY, pointer, button) || (activateKey == 0 || activatePressed); in touchDown()
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
D | Tooltip.java | 81 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in touchDown() method in Tooltip 86 manager.touchDown(this); in touchDown()
|
D | List.java | 67 public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) { in List() 70 List.this.touchDown(y); in List() 76 void touchDown (float y) { in touchDown() method in List
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | SingleTouchFilter.java | 13 sSystemRegistry.inputSystem.touchDown(0, event.getRawX() * (1.0f / params.viewScaleX), in updateTouch()
|
D | MultiTouchFilter.java | 26 BaseObject.sSystemRegistry.inputSystem.touchDown(id, in updateTouch()
|
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/ |
D | LwjglAWTInput.java | 109 boolean touchDown = false; field in LwjglAWTInput 302 return touchDown; in isTouched() 308 return touchDown; in isTouched() 351 processor.touchDown(e.x, e.y, e.pointer, e.button); in processEvents() 509 touchDown = true; in mousePressed() 532 if (pressedButtons.size == 0) touchDown = false; in mouseReleased()
|