OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputQueue
(Results
1 - 4
of
4
) 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/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 421 milliseconds