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

  /frameworks/base/tools/layoutlib/create/tests/mock_data/mock_android/widget/
LinearLayout.java 24 Object[] mObjects = EmptyArray.OBJECT;
  /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 55 * Lock used to modify the content of {@link #mObjects}. Any write operation
68 private List<T> mObjects;
91 * {@link #mObjects} is modified.
97 // A copy of the original mObjects array, initialized from and then used instead as soon as
98 // the mFilter ArrayFilter is used. mObjects will then only contain the filtered values.
180 mObjects = objects;
194 mObjects.add(object);
210 mObjects.addAll(collection);
226 Collections.addAll(mObjects, items);
243 mObjects.add(index, object)
    [all...]
  /frameworks/native/include/binder/
BpBinder.h 90 KeyedVector<const void*, entry_t> mObjects;
115 ObjectManager mObjects;
Parcel.h 264 binder_size_t* mObjects;
  /frameworks/native/libs/binder/
Binder.cpp 68 BpBinder::ObjectManager mObjects;
160 e->mObjects.attach(objectID, object, cleanupCookie, func);
178 return e->mObjects.find(objectID);
188 e->mObjects.detach(objectID);
  /frameworks/base/core/java/android/text/
DynamicLayout.java 122 mObjects = new PackedObjectVector<Directions>(1);
172 mObjects.insertAt(0, dirs);
312 mObjects.deleteAt(startline, endline - startline);
371 mObjects.insertAt(startline + i, objects);
627 return mObjects.getValue(line, 0);
728 private PackedObjectVector<Directions> mObjects;
  /frameworks/base/tools/layoutlib/create/tests/data/
mock_android.jar 

Completed in 637 milliseconds