HomeSort by relevance Sort by last modified time
    Searched full:controller (Results 1 - 25 of 1802) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libgdx/extensions/gdx-controllers/gdx-controllers/src/com/badlogic/gdx/controllers/
ControllerAdapter.java 25 public boolean buttonDown (Controller controller, int buttonIndex) {
30 public boolean buttonUp (Controller controller, int buttonIndex) {
35 public boolean axisMoved (Controller controller, int axisIndex, float value) {
40 public boolean povMoved (Controller controller, int povIndex, PovDirection value) {
45 public boolean xSliderMoved (Controller controller, int sliderIndex, boolean value) {
    [all...]
ControllerListener.java 23 /** Registered with {@link Controllers} or a specific {@link Controller} instance to receive events.
26 /** A {@link Controller} got connected.
27 * @param controller */
28 public void connected (Controller controller);
30 /** A {@link Controller} got disconnected.
31 * @param controller */
32 public void disconnected (Controller controller);
34 /** A button on the {@link Controller} was pressed. The buttonCode is controller specific. Th
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
tracing_controller_backend_unittest.py 110 self.controller = (
112 self.controller._supported_agents_classes = [FakeTracingAgentBase]
114 self.controller_log = self.controller._trace_log
117 if self.controller.is_tracing_running:
118 self.controller.StopTracing()
122 self.assertFalse(self.controller.is_tracing_running)
123 self.assertTrue(self.controller.StartTracing(self.config, 30))
124 self.assertTrue(self.controller.is_tracing_running)
128 self.assertFalse(self.controller.is_tracing_running)
129 self.assertTrue(self.controller.StartTracing(self.config, 30)
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
__init__.py 4 Top level controllers module are controller modules that need to be explicitly
5 specified by users in test configuration files. Top level controller modules
9 '''Instantiates the controller class with the input configs.
11 configs: A list of dicts each representing config for one controller
15 A list of controller objects.
18 '''Destroys a list of controller objects created by the "create" function
22 objs: A list of controller objects created from this module.
26 """This is a list of all the top level controller modules"""
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-lwjgl3/src/com/badlogic/gdx/controllers/lwjgl3/
Lwjgl3ControllerManager.java 6 import com.badlogic.gdx.controllers.Controller;
12 final Array<Controller> controllers = new Array<Controller>();
13 final Array<Controller> polledControllers = new Array<Controller>();
43 Lwjgl3Controller controller = new Lwjgl3Controller(this, i); local
44 connected(controller);
50 for(Controller controller: polledControllers) {
51 ((Lwjgl3Controller)controller).pollState()
    [all...]
  /device/google/dragon/bluetooth/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /device/htc/flounder/bluetooth/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/asus/grouper/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/moto/wingray/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/crespo/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/crespo4g/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/maguro/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-gwt/src/com/badlogic/gdx/controllers/gwt/
GwtControllers.java 20 import com.badlogic.gdx.controllers.Controller;
34 private final Array<Controller> controllers = new Array<Controller>();
58 controllers.add(event.controller);
60 listener.connected(event.controller);
64 controllers.removeValue(event.controller, true);
66 listener.disconnected(event.controller);
68 for(ControllerListener listener: event.controller.getListeners()) {
69 listener.disconnected(event.controller);
73 event.controller.buttons.put(event.code, event.amount)
132 GwtController controller = new GwtController(gamepad.getIndex(), gamepad.getId()); local
144 GwtController controller = controllerMap.remove(index); local
158 GwtController controller = controllerMap.get(index); local
    [all...]
  /external/clang/test/Parser/
missing-selector-name.mm 15 PodiumWalkerController *controller;
16 return controller.PROP;
29 PodiumWalkerController *controller;
30 return controller.PROP;
50 PodiumWalkerController *controller;
51 return controller.PROP;
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-android/src/com/badlogic/gdx/controllers/android/
AndroidControllers.java 30 import com.badlogic.gdx.controllers.Controller;
41 private final Array<Controller> controllers = new Array<Controller>();
64 Gdx.app.log(TAG, "Couldn't register controller life-cycle listener");
78 controllers.add(event.controller);
80 listener.connected(event.controller);
84 controllers.removeValue(event.controller, true);
86 listener.disconnected(event.controller);
88 for(ControllerListener listener: event.controller.getListeners()) {
89 listener.disconnected(event.controller);
160 AndroidController controller = controllerMap.get(keyEvent.getDeviceId()); local
192 AndroidController controller = controllerMap.get(deviceId); local
209 AndroidController controller = new AndroidController(deviceId, name); local
225 AndroidController controller = controllerMap.remove(deviceId); local
    [all...]
  /developers/build/prebuilts/androidtv/visual-game-controller/res/values/
strings.xml 5 <string name="message">Connect a game controller</string>
  /device/asus/fugu/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/google/gce_x86/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/bsp/intel/peripheral/libupm/src/pca9685/
CMakeLists.txt 2 set (libdescription "upm pca9685 I2C 16ch, 12b pwm, LED controller")
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/
ControllersTest.java 20 import com.badlogic.gdx.controllers.Controller;
102 for (Controller controller : Controllers.getControllers()) {
103 print("#" + i++ + ": " + controller.getName());
109 public int indexOf (Controller controller) {
110 return Controllers.getControllers().indexOf(controller, true);
114 public void connected (Controller controller) {
115 print("connected " + controller.getName())
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/
find_controller_test.html 79 var controller = new tr.ui.FindController(brushingStateController);
80 controller.findNext();
81 controller.findPrevious();
86 var controller = new tr.ui.FindController(brushingStateController);
90 controller.findNext();
93 controller.findPrevious();
100 var controller = new tr.ui.FindController(brushingStateController);
106 var promise = controller.startFiltering('asdf');
110 controller.findNext();
113 controller.findNext()
    [all...]
timeline_display_transform_animations_test.html 30 var controller = new tr.ui.b.AnimationController();
31 controller.target = target;
32 controller.queueAnimation(a, 0);
38 assert.isFalse(controller.hasActiveAnimation);
52 var controller = new tr.ui.b.AnimationController();
53 controller.target = target;
54 controller.queueAnimation(a, 0);
70 var controller = new tr.ui.b.AnimationController();
71 controller.target = target;
72 controller.queueAnimation(a, 0)
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
animation_controller_test.html 57 var controller = new tr.ui.b.AnimationController();
58 controller.target = target;
61 controller.queueAnimation(animation);
65 controller.cancelActiveAnimation();
66 assert.isFalse(controller.hasActiveAnimation);
76 var controller = new tr.ui.b.AnimationController();
77 controller.target = target;
80 controller.queueAnimation(animation);
84 assert.isTrue(controller.hasActiveAnimation);
88 assert.isFalse(controller.hasActiveAnimation)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/renderers/
ParticleControllerRenderData.java 6 /** Render data used by particle controller renderer
9 public ParticleController controller; field in class:ParticleControllerRenderData
  /external/chromium-trace/catapult/tracing/tracing/core/
scripting_controller_test.html 33 var controller = new tr.c.ScriptingController(brushingStateController);
34 var result = controller.executeCommand('1 + 1');
40 var controller = new tr.c.ScriptingController(brushingStateController);
42 controller.executeCommand('x = 2');
48 var controller = new tr.c.ScriptingController(brushingStateController);
50 controller.executeCommand('_x = 2');
57 var controller = new tr.c.ScriptingController(brushingStateController);
58 controller.executeCommand('a = 42');
59 var result = controller.executeCommand('a');
65 var controller = new tr.c.ScriptingController(brushingStateController)
    [all...]

Completed in 1428 milliseconds

1 2 3 4 5 6 7 8 91011>>