Home
last modified time | relevance | path

Searched refs:copyChild (Results 1 – 2 of 2) sorted by relevance

/frameworks/support/graphics/drawable/static/src/main/java/androidx/vectordrawable/graphics/drawable/
DVectorDrawableCompat.java1328 Object copyChild = children.get(i); in VGroup() local
1329 if (copyChild instanceof VGroup) { in VGroup()
1330 VGroup copyGroup = (VGroup) copyChild; in VGroup()
1334 if (copyChild instanceof VFullPath) { in VGroup()
1335 newPath = new VFullPath((VFullPath) copyChild); in VGroup()
1336 } else if (copyChild instanceof VClipPath) { in VGroup()
1337 newPath = new VClipPath((VClipPath) copyChild); in VGroup()
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java1308 final VObject copyChild = children.get(i); in VGroup() local
1309 if (copyChild instanceof VGroup) { in VGroup()
1310 final VGroup copyGroup = (VGroup) copyChild; in VGroup()
1314 if (copyChild instanceof VFullPath) { in VGroup()
1315 newPath = new VFullPath((VFullPath) copyChild); in VGroup()
1316 } else if (copyChild instanceof VClipPath) { in VGroup()
1317 newPath = new VClipPath((VClipPath) copyChild); in VGroup()