OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Pool
(Results
1 - 25
of
28
) 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++ -*===//
97
DelayedCleanupPool &
Pool
;
100
DelayedCleanupPoint(DelayedCleanupPool &
pool
) :
Pool
(
pool
) { }
103
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/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,
/frameworks/base/core/java/android/widget/
RelativeLayout.java
33
import android.util.
Pool
;
[
all
...]
Completed in 284 milliseconds
1
2