Searched defs:setLayerType (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransformsAndAnimationsActivity.java80 setLayerType(View.LAYER_TYPE_NONE);
91 setLayerType(View.LAYER_TYPE_SOFTWARE);
102 setLayerType(View.LAYER_TYPE_HARDWARE);
150 private void setLayerType(int layerType) { method in class:TransformsAndAnimationsActivity
151 button1.setLayerType(layerType, null);
152 button2.setLayerType(layerType, null);
153 button3.setLayerType(layerType, null);
154 button1a.setLayerType(layerType, null);
155 button2a.setLayerType(layerType, null);
156 button3a.setLayerType(layerTyp
[all...]
/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewCompatHC.java32 public static void setLayerType(View view, int layerType, Paint paint) { method in class:ViewCompatHC
33 view.setLayerType(layerType, paint);
/frameworks/base/core/java/android/view/
H A DTextureView.java267 public void setLayerType(int layerType, Paint paint) { method in class:TextureView
276 setLayerType(/* ignored */ 0, paint);
H A DRenderNode.java303 public boolean setLayerType(int layerType) { method in class:RenderNode
H A DView.java3421 * @see #setLayerType(int, android.graphics.Paint)
3449 * @see #setLayerType(int, android.graphics.Paint)
3474 * @see #setLayerType(int, android.graphics.Paint)
4021 setLayerType(a.getInt(attr, LAYER_TYPE_NONE), null);
10421 * {@link #setLayerType(int, android.graphics.Paint) layer type} on the view.</p>
10427 * {@link #setLayerType(int, android.graphics.Paint) layer} and is associated with a
10434 * @see #setLayerType(int, android.graphics.Paint)
13737 public void setLayerType(int layerType, Paint paint) { method in class:View
13743 boolean typeChanged = mRenderNode.setLayerType(layerType);
13769 * provided to {@link #setLayerType(in
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java277 public void setLayerType(View view, int layerType, Paint paint); method in interface:ViewCompat.ViewCompatImpl
411 public void setLayerType(View view, int layerType, Paint paint) { method in class:ViewCompat.BaseViewCompatImpl
762 public void setLayerType(View view, int layerType, Paint paint) { method in class:ViewCompat.HCViewCompatImpl
763 ViewCompatHC.setLayerType(view, layerType, paint);
772 // instance as was used to call setLayerType earlier.
773 setLayerType(view, getLayerType(view), paint);
1578 public static void setLayerType(View view, @LayerType int layerType, Paint paint) { method in class:ViewCompat
1579 IMPL.setLayerType(view, layerType, paint);
1586 * {@link #setLayerType(android.view.View, int, android.graphics.Paint)}
1593 * @see #setLayerType(androi
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java360 public void setLayerType(int layerType, Paint paint); method in interface:WebViewProvider.ViewDelegate
H A DWebView.java2468 public void setLayerType(int layerType, Paint paint) { method in class:WebView
2469 super.setLayerType(layerType, paint);
2470 mProvider.getViewDelegate().setLayerType(layerType, paint);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java330 mAwContents.setLayerType(mWebView.getLayerType(), null);
2010 public void setLayerType(final int layerType, final Paint paint) { method in class:WebViewChromium
2018 setLayerType(layerType, paint);
2023 mAwContents.setLayerType(layerType, paint);

Completed in 286 milliseconds