Home
last modified time | relevance | path

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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
DVectorDrawable_Delegate.java846 Object copyChild = children.get(i); in VGroup_Delegate() local
847 if (copyChild instanceof VGroup_Delegate) { in VGroup_Delegate()
848 VGroup_Delegate copyGroup = (VGroup_Delegate) copyChild; in VGroup_Delegate()
852 if (copyChild instanceof VFullPath_Delegate) { in VGroup_Delegate()
853 newPath = new VFullPath_Delegate((VFullPath_Delegate) copyChild); in VGroup_Delegate()
854 } else if (copyChild instanceof VClipPath_Delegate) { in VGroup_Delegate()
855 newPath = new VClipPath_Delegate((VClipPath_Delegate) copyChild); in VGroup_Delegate()
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
DVectorDrawableCompat.java1325 Object copyChild = children.get(i); in VGroup() local
1326 if (copyChild instanceof VGroup) { in VGroup()
1327 VGroup copyGroup = (VGroup) copyChild; in VGroup()
1331 if (copyChild instanceof VFullPath) { in VGroup()
1332 newPath = new VFullPath((VFullPath) copyChild); in VGroup()
1333 } else if (copyChild instanceof VClipPath) { in VGroup()
1334 newPath = new VClipPath((VClipPath) copyChild); in VGroup()
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java1203 final VObject copyChild = children.get(i); in VGroup() local
1204 if (copyChild instanceof VGroup) { in VGroup()
1205 final VGroup copyGroup = (VGroup) copyChild; in VGroup()
1209 if (copyChild instanceof VFullPath) { in VGroup()
1210 newPath = new VFullPath((VFullPath) copyChild); in VGroup()
1211 } else if (copyChild instanceof VClipPath) { in VGroup()
1212 newPath = new VClipPath((VClipPath) copyChild); in VGroup()