Searched refs:mComponentPools (Results 1 - 1 of 1) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DGameObjectFactory.java38 private FixedSizeArray<GameComponentPool> mComponentPools; field in class:GameObjectFactory
258 mComponentPools = new FixedSizeArray<GameComponentPool>(componentTypes.length, sComponentPoolComparator);
261 mComponentPools.add(new GameComponentPool(component.type, component.poolSize));
263 mComponentPools.sort(true);
277 final int index = mComponentPools.find(mPoolSearchDummy, false);
279 pool = mComponentPools.get(index);
678 final int componentPoolCount = mComponentPools.getCount();
680 final int outstandingComponents = mComponentPools.get(x).getAllocatedCount();
684 + mComponentPools.get(x).objectClass.getSimpleName()

Completed in 72 milliseconds