Home | History | Annotate | Download | only in jni

Lines Matching refs:Group

34     VectorDrawable::Group* rootGroup = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
40 VectorDrawable::Group* rootGroup = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
71 VectorDrawable::Group* newGroup = new VectorDrawable::Group();
76 VectorDrawable::Group* srcGroup = reinterpret_cast<VectorDrawable::Group*>(srcGroupPtr);
77 VectorDrawable::Group* newGroup = new VectorDrawable::Group(*srcGroup);
89 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
91 group->addChild(child);
164 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
166 bool success = group->stagingProperties()->copyProperties(groupProperties, length);
173 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
174 group->mutateStagingProperties()->updateProperties(rotate, pivotX, pivotY, scaleX, scaleY,
197 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
198 return group->stagingProperties()->getRotation();
202 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
203 group->mutateStagingProperties()->setRotation(rotation);
207 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
208 return group->stagingProperties()->getPivotX();
212 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
213 group->mutateStagingProperties()->setPivotX(pivotX);
217 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
218 return group->stagingProperties()->getPivotY();
222 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
223 group->mutateStagingProperties()->setPivotY(pivotY);
227 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
228 return group->stagingProperties()->getScaleX();
232 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
233 group->mutateStagingProperties()->setScaleX(scaleX);
237 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
238 return group->stagingProperties()->getScaleY();
242 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
243 group->mutateStagingProperties()->setScaleY(scaleY);
247 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
248 return group->stagingProperties()->getTranslateX();
252 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
253 group->mutateStagingProperties()->setTranslateX(translateX);
257 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
258 return group->stagingProperties()->getTranslateY();
262 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr);
263 group->mutateStagingProperties()->setTranslateY(translateY);