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.java34 public static void setLayerType(View view, int layerType, Paint paint) { method in class:ViewCompatHC
35 view.setLayerType(layerType, paint);
/frameworks/base/core/java/android/view/
H A DTextureView.java264 public void setLayerType(int layerType, @Nullable Paint paint) { method in class:TextureView
H A DRenderNode.java258 public boolean setLayerType(int layerType) { method in class:RenderNode
H A DView.java3825 * @see #setLayerType(int, android.graphics.Paint)
3853 * @see #setLayerType(int, android.graphics.Paint)
3878 * @see #setLayerType(int, android.graphics.Paint)
4447 setLayerType(a.getInt(attr, LAYER_TYPE_NONE), null);
12276 * {@link #setLayerType(int, android.graphics.Paint) layer type} on the view for the duration
12287 * the view is backed by a {@link #setLayerType(int, android.graphics.Paint) layer} and is
12298 * @see #setLayerType(int, android.graphics.Paint)
15753 public void setLayerType(int layerType, @Nullable Paint paint) { method in class:View
15759 boolean typeChanged = mRenderNode.setLayerType(layerType);
15786 * provided to {@link #setLayerType(in
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableView.java359 public void setLayerType(int layerType, Paint paint) { method in class:ExpandableView
361 super.setLayerType(layerType, paint);
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java381 public void setLayerType(int layerType, Paint paint); method in interface:WebViewProvider.ViewDelegate
H A DWebView.java2623 public void setLayerType(int layerType, Paint paint) { method in class:WebView
2624 super.setLayerType(layerType, paint);
2625 mProvider.getViewDelegate().setLayerType(layerType, paint);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java385 void setLayerType(View view, int layerType, Paint paint); method in interface:ViewCompat.ViewCompatImpl
563 public void setLayerType(View view, int layerType, Paint paint) { method in class:ViewCompat.BaseViewCompatImpl
1150 public void setLayerType(View view, int layerType, Paint paint) { method in class:ViewCompat.HCViewCompatImpl
1151 ViewCompatHC.setLayerType(view, layerType, paint);
1160 // instance as was used to call setLayerType earlier.
1161 setLayerType(view, getLayerType(view), paint);
2195 public static void setLayerType(View view, @LayerType int layerType, Paint paint) { method in class:ViewCompat
2196 IMPL.setLayerType(view, layerType, paint);
2203 * {@link #setLayerType(android.view.View, int, android.graphics.Paint)}
2210 * @see #setLayerType(androi
[all...]

Completed in 3581 milliseconds