HomeSort by relevance Sort by last modified time
    Searched defs:mObjects (Results 1 - 12 of 12) 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 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/native/include/binder/
BpBinder.h 90 KeyedVector<const void*, entry_t> mObjects;
115 ObjectManager mObjects;
Parcel.h 260 binder_size_t* mObjects;
  /frameworks/native/libs/binder/
Binder.cpp 68 BpBinder::ObjectManager mObjects;
160 e->mObjects.attach(objectID, object, cleanupCookie, func);
170 return e->mObjects.find(objectID);
180 e->mObjects.detach(objectID);
  /frameworks/base/core/java/android/text/
DynamicLayout.java 120 mObjects = new PackedObjectVector<Directions>(1);
168 mObjects.insertAt(0, dirs);
300 mObjects.deleteAt(startline, endline - startline);
357 mObjects.insertAt(startline + i, objects);
612 return mObjects.getValue(line, 0);
703 private PackedObjectVector<Directions> mObjects;
  /external/chromium_org/third_party/codesighs/
msdump2symdb.c 176 MSDump_Object* mObjects;
383 growth = realloc(inContainer->mObjects, (inContainer->mObjectCount + 1) * sizeof(MSDump_Object));
389 inContainer->mObjects = growth;
390 memset(inContainer->mObjects + index, 0, sizeof(MSDump_Object));
392 inContainer->mObjects[index].mObject = dup;
402 inContainer->mReadState.mCurrentObject = inContainer->mObjects + index;
681 for(sectionLoop = 0; sectionLoop < inContainer->mObjects[objectLoop].mSectionCount; sectionLoop++)
683 for(symbolLoop = 0; symbolLoop < inContainer->mObjects[objectLoop].mSections[sectionLoop].mSymbolCount; symbolLoop++)
685 CLEANUP(inContainer->mObjects[objectLoop].mSections[sectionLoop].mSymbols[symbolLoop].mName);
687 inContainer->mObjects[objectLoop].mSections[sectionLoop].mSymbolCount = 0
    [all...]
maptsvdifftool.c 184 ObjectStats* mObjects;
529 if(0 == strcmp(object, theSegment->mObjects[objectIndex].mObject))
539 moved = realloc(theSegment->mObjects, sizeof(ObjectStats) * (1 + theSegment->mObjectCount));
542 theSegment->mObjects = (ObjectStats*)moved;
544 memset(theSegment->mObjects + objectIndex, 0, sizeof(ObjectStats));
546 theSegment->mObjects[objectIndex].mObject = strdup(object);
547 if(NULL == theSegment->mObjects[objectIndex].mObject)
563 theObject = (theSegment->mObjects + objectIndex);
717 theObject = theSegment->mObjects + objectLoop;
858 theObject = theSegment->mObjects + objectLoop
    [all...]
msmap2tsv.c 86 ** mObjects A list of objects containing said symbol.
91 char** mObjects;
617 moved = realloc(dbSize->mObjects, sizeof(char*) * (dbSize->mObjectCount + 1));
622 dbSize->mObjects = (char**)moved;
623 dbSize->mObjects[dbSize->mObjectCount] = dbObject;
699 CLEANUP((*inDB)->mSymbols[symLoop].mSections[secLoop].mSizes[sizLoop].mObjects[objLoop]);
701 CLEANUP((*inDB)->mSymbols[symLoop].mSections[secLoop].mSizes[sizLoop].mObjects);
824 if(NULL != strstr(size->mObjects[objLoop], mapObject))
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/data/
mock_android.jar 

Completed in 170 milliseconds