HomeSort by relevance Sort by last modified time
    Searched defs:mObjects (Results 1 - 7 of 7) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
GameObjectCollisionSystem.java 42 FixedSizeArray<CollisionVolumeRecord> mObjects;
50 mObjects = new FixedSizeArray<CollisionVolumeRecord>(MAX_COLLIDING_OBJECTS);
51 mObjects.setComparator(sCollisionVolumeComparator);
52 //mObjects.setSorter(new ShellSorter<CollisionVolumeRecord>());
58 final int count = mObjects.getCount();
61 mRecordPool.release(mObjects.get(x));
63 mObjects.clear();
95 mObjects.add(record);
102 mObjects.sort(true);
104 final int count = mObjects.getCount()
    [all...]
ObjectManager.java 29 private FixedSizeArray<BaseObject> mObjects;
35 mObjects = new FixedSizeArray<BaseObject>(DEFAULT_ARRAY_SIZE);
42 mObjects = new FixedSizeArray<BaseObject>(arraySize);
50 final int count = mObjects.getCount();
52 BaseObject object = mObjects.get(i);
63 mObjects.add(object);
74 mObjects.remove(object, true);
83 final int count = mObjects.getCount();
85 final Object[] objectArray = mObjects.getArray();
94 return mObjects;
    [all...]
  /frameworks/base/core/java/android/widget/
ArrayAdapter.java 52 private List<T> mObjects;
55 * Lock used to modify the content of {@link #mObjects}. Any write operation
83 * {@link #mObjects} is modified.
89 // A copy of the original mObjects array, initialized from and then used instead as soon as
90 // the mFilter ArrayFilter is used. mObjects will then only contain the filtered values.
179 mObjects.add(object);
195 mObjects.addAll(collection);
211 Collections.addAll(mObjects, items);
228 mObjects.add(index, object);
244 mObjects.remove(object)
    [all...]
  /frameworks/base/include/binder/
BpBinder.h 90 KeyedVector<const void*, entry_t> mObjects;
115 ObjectManager mObjects;
Parcel.h 225 size_t* mObjects;
  /frameworks/base/libs/binder/
Binder.cpp 67 BpBinder::ObjectManager mObjects;
153 e->mObjects.attach(objectID, object, cleanupCookie, func);
162 return e->mObjects.find(objectID);
171 e->mObjects.detach(objectID);
  /frameworks/base/core/java/android/text/
DynamicLayout.java 117 mObjects = new PackedObjectVector<Directions>(1);
165 mObjects.insertAt(0, dirs);
300 mObjects.deleteAt(startline, endline - startline);
357 mObjects.insertAt(startline + i, objects);
398 return mObjects.getValue(line, 0);
487 private PackedObjectVector<Directions> mObjects;

Completed in 336 milliseconds