OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mEventPool
(Results
1 - 6
of
6
) sorted by null
/developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/
EventScheduler.java
38
private FastEventQueue
mEventPool
= null;
127
if (
mEventPool
!= null && (
mEventPool
.size() > 1)) {
128
event =
mEventPool
.remove();
139
if (
mEventPool
== null) {
140
mEventPool
= new FastEventQueue(event);
143
} else if (
mEventPool
.size() < MAX_POOL_SIZE) {
144
mEventPool
.add(event);
/developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/
EventScheduler.java
38
private FastEventQueue
mEventPool
= null;
127
if (
mEventPool
!= null && (
mEventPool
.size() > 1)) {
128
event =
mEventPool
.remove();
139
if (
mEventPool
== null) {
140
mEventPool
= new FastEventQueue(event);
143
} else if (
mEventPool
.size() < MAX_POOL_SIZE) {
144
mEventPool
.add(event);
/developers/samples/android/common/src/java/com/example/android/common/midi/
EventScheduler.java
38
private FastEventQueue
mEventPool
= null;
127
if (
mEventPool
!= null && (
mEventPool
.size() > 1)) {
128
event =
mEventPool
.remove();
139
if (
mEventPool
== null) {
140
mEventPool
= new FastEventQueue(event);
143
} else if (
mEventPool
.size() < MAX_POOL_SIZE) {
144
mEventPool
.add(event);
/development/samples/browseable/MidiScope/src/com.example.android.common.midi/
EventScheduler.java
38
private FastEventQueue
mEventPool
= null;
127
if (
mEventPool
!= null && (
mEventPool
.size() > 1)) {
128
event =
mEventPool
.remove();
139
if (
mEventPool
== null) {
140
mEventPool
= new FastEventQueue(event);
143
} else if (
mEventPool
.size() < MAX_POOL_SIZE) {
144
mEventPool
.add(event);
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
EventScheduler.java
38
private FastEventQueue
mEventPool
= null;
127
if (
mEventPool
!= null && (
mEventPool
.size() > 1)) {
128
event =
mEventPool
.remove();
139
if (
mEventPool
== null) {
140
mEventPool
= new FastEventQueue(event);
143
} else if (
mEventPool
.size() < MAX_POOL_SIZE) {
144
mEventPool
.add(event);
/cts/tests/sensor/src/android/hardware/cts/
SensorDirectReportTest.java
158
private EventPool
mEventPool
;
172
mEventPool
= new EventPool(10 * SENSORS_EVENT_COUNT);
[
all
...]
Completed in 1572 milliseconds