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.java1162 Object copyChild = children.get(i); in VGroup() local
1163 if (copyChild instanceof VGroup) { in VGroup()
1164 VGroup copyGroup = (VGroup) copyChild; in VGroup()
1168 if (copyChild instanceof VFullPath) { in VGroup()
1169 newPath = new VFullPath((VFullPath) copyChild); in VGroup()
1170 } else if (copyChild instanceof VClipPath) { in VGroup()
1171 newPath = new VClipPath((VClipPath) copyChild); in VGroup()
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java1038 final VObject copyChild = children.get(i); in VGroup() local
1039 if (copyChild instanceof VGroup) { in VGroup()
1040 final VGroup copyGroup = (VGroup) copyChild; in VGroup()
1044 if (copyChild instanceof VFullPath) { in VGroup()
1045 newPath = new VFullPath((VFullPath) copyChild); in VGroup()
1046 } else if (copyChild instanceof VClipPath) { in VGroup()
1047 newPath = new VClipPath((VClipPath) copyChild); in VGroup()