Searched refs:captureView (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | ViewDebug.java | 741 final View captureView = findView(root, parameter); in capture() local 742 capture(root, clientStream, captureView); in capture() 746 public static void capture(View root, final OutputStream clientStream, View captureView) in capture() argument 748 Bitmap b = performViewCapture(captureView, false); in capture() 771 private static Bitmap performViewCapture(final View captureView, final boolean skipChildren) { in performViewCapture() argument 772 if (captureView != null) { in performViewCapture() 776 captureView.post(new Runnable() { in performViewCapture() 779 cache[0] = captureView.createSnapshot( in performViewCapture() 793 Log.w("View", "Could not complete the capture of the view " + captureView); in performViewCapture()
|
/frameworks/base/core/java/android/ddm/ |
D | DdmHandleViewDebug.java | 151 return captureView(rootView, targetView); in handleChunk() 282 private Chunk captureView(View rootView, View targetView) { in captureView() method in DdmHandleViewDebug
|