Lines Matching refs:Pool
48 // Static -- pool
51 private static final Pool.Callback<Timeline> poolCallback = new Pool.Callback<Timeline>() {
56 static final Pool<Timeline> pool = new Pool<Timeline>(10, poolCallback) {
62 * are waiting in the Timeline pool.
65 return pool.size();
69 * Increases the minimum capacity of the pool. Capacity defaults to 10.
72 pool.ensureCapacity(minCapacity);
84 Timeline tl = pool.get();
94 Timeline tl = pool.get();
183 Timeline tl = pool.get();
199 Timeline tl = pool.get();
280 pool.free(this);