OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GameComponentPool
(Results
1 - 2
of
2
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
GameComponentPool.java
19
public class
GameComponentPool
extends TObjectPool<GameComponent> {
22
public
GameComponentPool
(Class<?> type) {
28
public
GameComponentPool
(Class<?> type, int size) {
GameObjectFactory.java
38
private FixedSizeArray<
GameComponentPool
> mComponentPools;
39
private
GameComponentPool
mPoolSearchDummy;
258
mComponentPools = new FixedSizeArray<
GameComponentPool
>(componentTypes.length, sComponentPoolComparator);
261
mComponentPools.add(new
GameComponentPool
(component.type, component.poolSize));
265
mPoolSearchDummy = new
GameComponentPool
(Object.class, 1);
274
protected
GameComponentPool
getComponentPool(Class<?> componentType) {
275
GameComponentPool
pool = null;
285
GameComponentPool
pool = getComponentPool(componentType);
295
GameComponentPool
pool = getComponentPool(component.getClass());
306
GameComponentPool
pool = getComponentPool(componentType)
[
all
...]
Completed in 242 milliseconds