Lines Matching refs:objects
51 A* objects[kMaxObjects]; in onDraw() local
68 delete objects[count-1]; in onDraw()
71 objects[count] = new A; in onDraw()
76 delete objects[i]; in onDraw()
113 std::unique_ptr<B> objects[kMaxObjects]; in onDraw() local
117 if (nullptr == objects[idx].get()) { in onDraw()
118 objects[idx].reset(new B); in onDraw()
120 objects[idx].reset(); in onDraw()
158 C* objects[M]; in onDraw() local
162 objects[i] = new C; in onDraw()
165 delete objects[i]; in onDraw()