Searched refs:mObjects (Results 1 – 5 of 5) sorted by relevance
/external/replicaisland/src/com/replica/replicaisland/ |
D | ObjectManager.java | 29 private FixedSizeArray<BaseObject> mObjects; field in ObjectManager 35 mObjects = new FixedSizeArray<BaseObject>(DEFAULT_ARRAY_SIZE); in ObjectManager() 42 mObjects = new FixedSizeArray<BaseObject>(arraySize); in ObjectManager() 50 final int count = mObjects.getCount(); in reset() 52 BaseObject object = mObjects.get(i); in reset() 63 mObjects.add(object); in commitUpdates() 74 mObjects.remove(object, true); in commitUpdates() 83 final int count = mObjects.getCount(); in update() 85 final Object[] objectArray = mObjects.getArray(); in update() 94 return mObjects; in getObjects() [all …]
|
D | GameObjectCollisionSystem.java | 42 FixedSizeArray<CollisionVolumeRecord> mObjects; field in GameObjectCollisionSystem 50 mObjects = new FixedSizeArray<CollisionVolumeRecord>(MAX_COLLIDING_OBJECTS); in GameObjectCollisionSystem() 51 mObjects.setComparator(sCollisionVolumeComparator); in GameObjectCollisionSystem() 58 final int count = mObjects.getCount(); in reset() 61 mRecordPool.release(mObjects.get(x)); in reset() 63 mObjects.clear(); in reset() 95 mObjects.add(record); in registerForCollisions() 102 mObjects.sort(true); in update() 104 final int count = mObjects.getCount(); in update() 106 final CollisionVolumeRecord record = mObjects.get(x); in update() [all …]
|
/external/chromium_org/third_party/codesighs/ |
D | msdump2symdb.c | 176 MSDump_Object* mObjects; member 383 … growth = realloc(inContainer->mObjects, (inContainer->mObjectCount + 1) * sizeof(MSDump_Object)); in processLine() 389 inContainer->mObjects = growth; in processLine() 390 memset(inContainer->mObjects + index, 0, sizeof(MSDump_Object)); in processLine() 392 inContainer->mObjects[index].mObject = dup; in processLine() 402 inContainer->mReadState.mCurrentObject = inContainer->mObjects + index; in processLine() 681 … for(sectionLoop = 0; sectionLoop < inContainer->mObjects[objectLoop].mSectionCount; sectionLoop++) in dumpCleanup() 683 …for(symbolLoop = 0; symbolLoop < inContainer->mObjects[objectLoop].mSections[sectionLoop].mSymbolC… in dumpCleanup() 685 … CLEANUP(inContainer->mObjects[objectLoop].mSections[sectionLoop].mSymbols[symbolLoop].mName); in dumpCleanup() 687 inContainer->mObjects[objectLoop].mSections[sectionLoop].mSymbolCount = 0; in dumpCleanup() [all …]
|
D | maptsvdifftool.c | 184 ObjectStats* mObjects; member 529 if(0 == strcmp(object, theSegment->mObjects[objectIndex].mObject)) in difftool() 539 … moved = realloc(theSegment->mObjects, sizeof(ObjectStats) * (1 + theSegment->mObjectCount)); in difftool() 542 theSegment->mObjects = (ObjectStats*)moved; in difftool() 544 … memset(theSegment->mObjects + objectIndex, 0, sizeof(ObjectStats)); in difftool() 546 theSegment->mObjects[objectIndex].mObject = strdup(object); in difftool() 547 if(NULL == theSegment->mObjects[objectIndex].mObject) in difftool() 563 theObject = (theSegment->mObjects + objectIndex); in difftool() 717 theObject = theSegment->mObjects + objectLoop; in difftool() 858 theObject = theSegment->mObjects + objectLoop; in difftool() [all …]
|
D | msmap2tsv.c | 91 char** mObjects; member 617 … moved = realloc(dbSize->mObjects, sizeof(char*) * (dbSize->mObjectCount + 1)); in readSymDB() 622 dbSize->mObjects = (char**)moved; in readSymDB() 623 dbSize->mObjects[dbSize->mObjectCount] = dbObject; in readSymDB() 699 … CLEANUP((*inDB)->mSymbols[symLoop].mSections[secLoop].mSizes[sizLoop].mObjects[objLoop]); in cleanSymDB() 701 CLEANUP((*inDB)->mSymbols[symLoop].mSections[secLoop].mSizes[sizLoop].mObjects); in cleanSymDB() 824 if(NULL != strstr(size->mObjects[objLoop], mapObject)) in fillSymbolSizeFromDB()
|