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

1 2

  /frameworks/base/core/java/android/util/
Pools.java 26 public static <T extends Poolable<T>> Pool<T> simplePool(PoolableManager<T> manager) {
30 public static <T extends Poolable<T>> Pool<T> finitePool(PoolableManager<T> manager, int limit) {
34 public static <T extends Poolable<T>> Pool<T> synchronizedPool(Pool<T> pool) {
35 return new SynchronizedPool<T>(pool);
38 public static <T extends Poolable<T>> Pool<T> synchronizedPool(Pool<T> pool, Object lock) {
39 return new SynchronizedPool<T>(pool, lock)
    [all...]
Pool.java 22 public interface Pool<T extends Poolable<T>> {
SynchronizedPool.java 23 class SynchronizedPool<T extends Poolable<T>> implements Pool<T> {
24 private final Pool<T> mPool;
27 public SynchronizedPool(Pool<T> pool) {
28 mPool = pool;
32 public SynchronizedPool(Pool<T> pool, Object lock) {
33 mPool = pool;
FinitePool.java 22 class FinitePool<T extends Poolable<T>> implements Pool<T> {
26 * Factory used to create new pool objects
30 * Maximum number of objects in the pool
43 * Number of objects in the pool
54 if (limit <= 0) throw new IllegalArgumentException("The pool limit must be > 0");
91 Log.w(LOG_TAG, "Element is already in pool: " + element);
  /external/llvm/lib/Support/
StringPool.cpp 1 //===-- StringPool.cpp - Interned string pool -----------------------------===//
31 S->getValue().Pool = this;
  /external/clang/include/clang/Basic/
DelayedCleanupPool.h 1 //=== DelayedCleanupPool.h - Delayed Clean-up Pool Implementation *- C++ -*===//
98 DelayedCleanupPool &Pool;
101 DelayedCleanupPoint(DelayedCleanupPool &pool) : Pool(pool) { }
104 Pool.doCleanup();
  /external/llvm/include/llvm/Support/
StringPool.h 1 //===-- StringPool.h - Interned string pool ---------------------*- C++ -*-===//
10 // This file declares an interned string pool, which helps reduce the cost of
15 // StringPool Pool;
16 // PooledStringPtr Str = Pool.intern("wakka wakka");
25 // strings in the string pool are reference-counted (automatically).
40 /// StringPool - An interned string pool. Use the intern method to add a
44 /// PooledString - This is the value of an entry in the pool's interning
47 StringPool *Pool; ///< So the string can remove itself.
51 PooledString() : Pool(0), Refcount(0) { }
64 /// intern - Adds a string to the pool and returns a reference-counte
    [all...]
  /frameworks/base/core/java/android/view/
VelocityTracker.java 20 import android.util.Pool;
35 private static final Pool<VelocityTracker> sPool = Pools.synchronizedPool(
GLES20RecordingCanvas.java 27 import android.util.Pool;
39 // The recording canvas pool should be large enough to handle a deeply nested
43 private static final Pool<GLES20RecordingCanvas> sPool = Pools.synchronizedPool(
  /external/v8/src/
global-handles.h 214 class Pool;
258 Pool* pool_;
global-handles.cc 243 class GlobalHandles::Pool {
245 Pool() {
252 ~Pool() {
308 pool_(new Pool()),
  /external/llvm/lib/TableGen/
Record.cpp 473 typedef FoldingSet<BitsInit> Pool;
474 static Pool ThePool;
543 typedef DenseMap<int64_t, IntInit *> Pool;
544 static Pool ThePool;
569 typedef StringMap<StringInit *> Pool;
570 static Pool ThePool;
578 typedef StringMap<CodeInit *> Pool;
579 static Pool ThePool;
600 typedef FoldingSet<ListInit> Pool;
601 static Pool ThePool
    [all...]
  /external/clang/lib/Sema/
IdentifierResolver.cpp 39 IdDeclInfo Pool[POOL_SIZE];
311 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];
  /external/libvpx/vp8/common/arm/armv6/
dc_only_idct_add_v6.asm 65 ; Constant Pool
iwalsh_v6.asm 150 ; Constant Pool
simpleloopfilter_v6.asm 282 ; Constant Pool
  /cts/tools/utils/
buildCts.py 26 from multiprocessing import Pool
77 pool = Pool(processes=16)
80 pool.apply_async(GenerateSignatureCheckDescription, [self.test_repository])
81 pool.apply_async(GenerateReferenceAppDescription, [self.test_repository])
82 pool.apply_async(GenerateAppSecurityDescription, [self.temp_dir,
88 pool.apply_async(GenerateTestDescription, [self.test_root, self.temp_dir,
91 pool.close()
92 pool.join()
  /external/webkit/Tools/Scripts/
run-qtwebkit-tests 190 from multiprocessing import Pool
196 class Pool(object):
197 """ A hack, created to avoid problems with multiprocessing module, this class is single thread replacement for the multiprocessing.Pool class. """
207 self._Pool = Pool
238 """ Executes given files by using a pool of workers. """
241 self.debug("Using %s the workers pool, number of workers %i", repr(workers), self._options.parallel_level)
  /external/libvpx/vp8/decoder/arm/neon/
dequant_idct_neon.asm 125 ; Constant Pool
idct_dequant_dc_full_2x_neon.asm 200 ; Constant Pool
idct_dequant_full_2x_neon.asm 192 ; Constant Pool
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 40 ATTRIBUTE Ascend-Assign-IP-Global-Pool 146 string
42 ATTRIBUTE Ascend-DHCP-Pool-Number 148 integer
111 ATTRIBUTE Ascend-IP-Pool-Definition 217 string
112 ATTRIBUTE Ascend-Assign-IP-Pool 218 integer
  /external/libvpx/vp8/decoder/arm/armv6/
dequant_idct_v6.asm 191 ; Constant Pool
dequant_dc_idct_v6.asm 213 ; Constant Pool
  /external/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 478 INSTANTIATE_TEST_CASE_P(Pool, DescriptorDatabaseTest,

Completed in 645 milliseconds

1 2