Lines Matching refs:objects
50 A* objects[kMaxObjects]; in onDraw() local
67 delete objects[count-1]; in onDraw()
70 objects[count] = new A; in onDraw()
75 delete objects[i]; in onDraw()
112 std::unique_ptr<B> objects[kMaxObjects]; in onDraw() local
116 if (nullptr == objects[idx].get()) { in onDraw()
117 objects[idx].reset(new B); in onDraw()
119 objects[idx].reset(); in onDraw()
157 C* objects[M]; in onDraw() local
161 objects[i] = new C; in onDraw()
164 delete objects[i]; in onDraw()