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