Home
last modified time | relevance | path

Searched refs:skipChildren (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/
DViewCaptureTest.java71 private void testCreateSnapshot(boolean skipChildren, int goldenResId) { in testCreateSnapshot() argument
72 Bitmap result = mViewToCapture.createSnapshot(Bitmap.Config.ARGB_8888, 0, skipChildren); in testCreateSnapshot()
/frameworks/base/core/java/android/view/
DViewDebug.java780 private static Bitmap performViewCapture(final View captureView, final boolean skipChildren) { in performViewCapture() argument
789 Bitmap.Config.ARGB_8888, 0, skipChildren); in performViewCapture()
816 public static void dump(View root, boolean skipChildren, boolean includeProperties, in dump() argument
825 skipChildren, includeProperties); in dump() local
972 BufferedWriter out, int level, boolean skipChildren, boolean includeProperties) { in dumpViewHierarchy() argument
977 if (skipChildren) { in dumpViewHierarchy()
985 dumpViewHierarchy(context, (ViewGroup) view, out, level + 1, skipChildren, in dumpViewHierarchy()
993 dumpViewHierarchy(context, overlayContainer, out, level + 2, skipChildren, in dumpViewHierarchy()
DViewGroup.java3787 public Bitmap createSnapshot(Bitmap.Config quality, int backgroundColor, boolean skipChildren) { in createSnapshot() argument
3791 if (skipChildren) { in createSnapshot()
3803 Bitmap b = super.createSnapshot(quality, backgroundColor, skipChildren); in createSnapshot()
3805 if (skipChildren) { in createSnapshot()
DView.java18458 public Bitmap createSnapshot(Bitmap.Config quality, int backgroundColor, boolean skipChildren) {
/frameworks/base/core/java/android/ddm/
DDdmHandleViewDebug.java217 boolean skipChildren = in.getInt() > 0; in dumpHierarchy()
228 ViewDebug.dump(rootView, skipChildren, includeProperties, b); in dumpHierarchy()