HomeSort by relevance Sort by last modified time
    Searched refs:MAX_POOL_SIZE (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/base/core/java/android/widget/
ExpandableListPosition.java 30 private static final int MAX_POOL_SIZE = 5;
32 new ArrayList<ExpandableListPosition>(MAX_POOL_SIZE);
134 if (sPool.size() < MAX_POOL_SIZE) {
ExpandableListConnector.java     [all...]
  /frameworks/base/core/java/com/android/internal/os/
SomeArgs.java 28 private static final int MAX_POOL_SIZE = 10;
96 if (sPoolSize < MAX_POOL_SIZE) {
  /frameworks/base/core/java/com/android/internal/statusbar/
NotificationVisibility.java 29 private static final int MAX_POOL_SIZE = 25;
30 private static ArrayDeque<NotificationVisibility> sPool = new ArrayDeque<>(MAX_POOL_SIZE);
137 if (sPool.size() < MAX_POOL_SIZE) {
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /developers/samples/android/common/src/java/com/example/android/common/midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /development/samples/browseable/MidiScope/src/com.example.android.common.midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /frameworks/base/core/java/android/view/
MagnificationSpec.java 29 private static final int MAX_POOL_SIZE = 20;
31 new SynchronizedPool<>(MAX_POOL_SIZE);
WindowInfo.java 35 private static final int MAX_POOL_SIZE = 10;
38 new Pools.SynchronizedPool<WindowInfo>(MAX_POOL_SIZE);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
ThreadPool.java 30 private static final int MAX_POOL_SIZE = 8;
84 this(CORE_POOL_SIZE, MAX_POOL_SIZE);
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 67 private static final int MAX_POOL_SIZE = 10;
69 new SimplePool<TouchHistory>(MAX_POOL_SIZE);
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 67 private static final int MAX_POOL_SIZE = 10;
69 new SimplePool<TouchHistory>(MAX_POOL_SIZE);
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
TouchDisplayView.java 67 private static final int MAX_POOL_SIZE = 10;
69 new SimplePool<TouchHistory>(MAX_POOL_SIZE);
  /frameworks/base/core/java/android/os/
Message.java 114 private static final int MAX_POOL_SIZE = 50;
307 if (sPoolSize < MAX_POOL_SIZE) {
  /frameworks/base/graphics/java/android/graphics/
Region.java 25 private static final int MAX_POOL_SIZE = 10;
28 new SynchronizedPool<Region>(MAX_POOL_SIZE);
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
KeyEventDispatcher.java 56 private static final int MAX_POOL_SIZE = 10;
58 private final Pool<PendingKeyEvent> mPendingEventPool = new Pools.SimplePool<>(MAX_POOL_SIZE);
AccessibilityInputFilter.java 471 private static final int MAX_POOL_SIZE = 32;
473 new SimplePool<MotionEventHolder>(MAX_POOL_SIZE);
MagnificationGestureHandler.java 757 private static final int MAX_POOL_SIZE = 10;
806 if (sPoolSize < MAX_POOL_SIZE) {
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityRecord.java 73 private static final int MAX_POOL_SIZE = 10;
764 if (sPoolSize <= MAX_POOL_SIZE) {
AccessibilityWindowInfo.java 81 private static final int MAX_POOL_SIZE = 10;
83 new SynchronizedPool<AccessibilityWindowInfo>(MAX_POOL_SIZE);
AccessibilityNodeInfo.java 605 private static final int MAX_POOL_SIZE = 50;
607 new SynchronizedPool<>(MAX_POOL_SIZE);
    [all...]
AccessibilityEvent.java     [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-mcore.c 115 #define MAX_POOL_SIZE (1024/4)
116 static struct literal litpool [MAX_POOL_SIZE];
675 if (poolsize >= MAX_POOL_SIZE - 2)
    [all...]

Completed in 796 milliseconds

1 2