HomeSort by relevance Sort by last modified time
    Searched refs:inputQueue (Results 1 - 5 of 5) sorted by null

  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
InputSystemJme.java 55 private final ArrayList<InputEvent> inputQueue = new ArrayList<InputEvent>();
204 inputQueue.add(evt);
210 inputQueue.add(evt);
221 inputQueue.add(evt);
225 inputQueue.add(evt);
229 int queueSize = inputQueue.size();
232 InputEvent evt = inputQueue.get(i);
244 inputQueue.clear();
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 93 if (android_app->inputQueue != NULL) {
94 AInputQueue_detachLooper(android_app->inputQueue);
96 android_app->inputQueue = android_app->pendingInputQueue;
97 if (android_app->inputQueue != NULL) {
99 AInputQueue_attachLooper(android_app->inputQueue,
177 if (android_app->inputQueue != NULL) {
178 AInputQueue_detachLooper(android_app->inputQueue);
189 while (AInputQueue_getEvent(app->inputQueue, &event) >= 0) {
191 if (AInputQueue_preDispatchEvent(app->inputQueue, event)) {
196 AInputQueue_finishEvent(app->inputQueue, event, handled)
    [all...]
android_native_app_glue.h 147 AInputQueue* inputQueue;
201 * android_poll_source structure. These can be read via the inputQueue
215 * this command, android_app->inputQueue will be updated to the new queue
  /external/quake/quake/src/WinQuake/
net_comx.cpp 149 queue inputQueue;
200 if (! FULL(p->inputQueue))
202 ENQUEUE (p->inputQueue, b);
261 if (!FULL(p->inputQueue))
263 ENQUEUE (p->inputQueue, b);
407 p->inputQueue.head = p->inputQueue.tail = 0;
711 if (EMPTY (p->inputQueue))
714 DEQUEUE (p->inputQueue, ret);
772 while (! EMPTY (p->inputQueue))
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 107 private ArrayList<InputEvent> inputQueue = new ArrayList<InputEvent>();
346 inputQueue.add(evt);
367 inputQueue.add(evt);
398 inputQueue.add(evt);
416 inputQueue.add(evt);
437 inputQueue.add(evt);
758 int queueSize = inputQueue.size();
765 InputEvent event = inputQueue.get(j);
791 InputEvent event = inputQueue.get(i);
813 // needs to know when the event is not anymore in inputQueue
    [all...]

Completed in 477 milliseconds