Searched refs:layerType (Results 1 - 11 of 11) sorted by relevance

/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewCompatHC.java28 public static void setLayerType(View view, int layerType, Paint paint) { argument
29 view.setLayerType(layerType, paint);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransformsAndAnimationsActivity.java150 private void setLayerType(int layerType) { argument
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(layerType, null);
157 button1b.setLayerType(layerType, null);
158 button2b.setLayerType(layerType, null);
159 button3b.setLayerType(layerType, nul
[all...]
H A DDisplayListLayersActivity.java94 LayerView(Context context, int color, int layerType, String tag) { argument
100 setLayerType(layerType, null);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java133 public void setLayerType(View view, int layerType, Paint paint); argument
198 public void setLayerType(View view, int layerType, Paint paint) { argument
226 @Override public void setLayerType(View view, int layerType, Paint paint) { argument
227 ViewCompatHC.setLayerType(view, layerType, paint);
697 * @param layerType The ype of layer to use with this view, must be one of
705 * @param layerType The type of layer to use with this view, must be one of
712 public static void setLayerType(View view, int layerType, Paint paint) { argument
713 IMPL.setLayerType(view, layerType, paint);
H A DViewPager.java1708 final int layerType = enable ?
1710 ViewCompat.setLayerType(getChildAt(i), layerType, null);
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java343 public void setLayerType(int layerType, Paint paint); argument
H A DWebView.java2136 public void setLayerType(int layerType, Paint paint) { argument
2137 super.setLayerType(layerType, paint);
2138 mProvider.getViewDelegate().setLayerType(layerType, paint);
H A DWebViewClassic.java8559 public void setLayerType(int layerType, Paint paint) { argument
/frameworks/base/core/java/android/view/
H A DView.java12196 * @param layerType The type of layer to use with this view, must be one of
12211 public void setLayerType(int layerType, Paint paint) { argument
12212 if (layerType < LAYER_TYPE_NONE || layerType > LAYER_TYPE_HARDWARE) {
12217 if (layerType == mLayerType) {
12218 if (layerType != LAYER_TYPE_NONE && paint != mLayerPaint) {
12238 mLayerType = layerType;
12276 int layerType = getLayerType();
12277 if (layerType != LAYER_TYPE_NONE) {
12279 if (layerType
[all...]
H A DTextureView.java253 * @param layerType The ype of layer to use with this view, must be one of
261 public void setLayerType(int layerType, Paint paint) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1648 * @param layerType {@link View#LAYER_TYPE_NONE} or {@link View#LAYER_TYPE_HARDWARE}
1650 private void setPileLayers(int layerType) { argument
1653 switch (layerType) {
1656 mPile.getChildAt(i).setLayerType(layerType, null);
1678 view.setLayerType(layerType, null);

Completed in 546 milliseconds