Searched refs:Pool (Results 1 – 22 of 22) sorted by relevance
20 StrSymPool* Pool = new StrSymPool(1, 1, *R); in StringTableTest() local21 m_pTestee = new StringTable(*Pool); in StringTableTest()
50 public static interface Pool<T> { interface in Pools77 public static class SimplePool<T> implements Pool<T> {
51 public static interface Pool<T> { interface in Pools78 public static class SimplePool<T> implements Pool<T> {
23 import android.util.Pools.Pool;36 private final Pool<ActiveInputEvent> mActiveInputEventPool =
12 <li><a href="#ClassStructure">Define the Thread Pool Class</a>13 <li><a href="#PoolParameters">Determine the Thread Pool Parameters</a></li>14 <li><a href="#ThreadPool">Create a Pool of Threads</a></li>53 <h2 id="ClassStructure">Define the Thread Pool Class</h2>148 <h2 id="PoolParameters">Determine the Thread Pool Parameters</h2>215 <h2 id="ThreadPool">Create a Pool of Threads</h2>
1 page.title=Running Code on a Thread Pool Thread12 <li><a href="#RunRunnable">Run a Runnable on a Thread in the Thread Pool</a></li>46 <h2 id="RunRunnable">Run a Task on a Thread in the Thread Pool</h2>
72 <b><a href="run-code.html">Running Code on a Thread Pool Thread</a></b>
26 from multiprocessing import Pool93 pool = Pool(processes=None)
27 import android.util.Pools.Pool;58 private final Pool<PendingKeyEvent> mPendingEventPool = new Pools.SimplePool<>(MAX_POOL_SIZE);
32 private final Pools.Pool<ArrayList<T>> mListPool = new Pools.SimplePool<>(10);
159 private static final Pools.Pool<Tab> sTabPool = new Pools.SynchronizedPool<>(16);283 private final Pools.Pool<TabView> mTabViewPool = new Pools.SimplePool<>(12);
69 private final Pools.Pool<HeadsUpEntry> mEntryPool = new Pools.Pool<HeadsUpEntry>() {
48 private static final Pools.Pool<BottomNavigationItemView> sItemPool =
307 static Pools.Pool<InfoRecord> sPool = new Pools.SimplePool<>(20);
56 private Pools.Pool<UpdateOp> mUpdateOpPool = new Pools.SimplePool<UpdateOp>(UpdateOp.POOL_SIZE);
26 import android.util.Pools.Pool;70 private static Pool<Bitmap> sTilePool = new SynchronizedPool<Bitmap>(64);
147 * **String Pool** (MCO_StringPool) - A collection of serialized variable
47 import android.util.Pools.Pool;386 final Pool<PendingEvent> mPendingEventPool = new SimplePool<>(20);
37 import android.util.Pools.Pool;1636 private final Pool<PendingEvent> mPendingEventPool = new SimplePool<>(20);
2010 android.util.Pools$Pool
4162 android.util.Pools$Pool
5872 public static abstract interface Pools.Pool<T> {5877 public static class Pools.SimplePool<T> implements android.support.v4.util.Pools.Pool {