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

/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/honeycomb/android/support/v4/view/
H A DViewCompatHC.java32 public static void setLayerType(View view, int layerType, Paint paint) { argument
33 view.setLayerType(layerType, paint);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java217 public void setLayerType(View view, int layerType, Paint paint); argument
296 public void setLayerType(View view, int layerType, Paint paint) { argument
394 public void setLayerType(View view, int layerType, Paint paint) { argument
395 ViewCompatHC.setLayerType(view, layerType, paint);
937 * @param layerType The ype of layer to use with this view, must be one of
945 * @param layerType The type of layer to use with this view, must be one of
952 public static void setLayerType(View view, int layerType, Paint paint) { argument
953 IMPL.setLayerType(view, layerType, paint);
H A DViewPager.java1773 final int layerType = enable ?
1775 ViewCompat.setLayerType(getChildAt(i), layerType, null);
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java357 public void setLayerType(int layerType, Paint paint); argument
H A DWebView.java2336 public void setLayerType(int layerType, Paint paint) { argument
2337 super.setLayerType(layerType, paint);
2338 mProvider.getViewDelegate().setLayerType(layerType, paint);
/frameworks/base/core/java/android/view/
H A DTextureView.java261 * @param layerType The ype of layer to use with this view, must be one of
269 public void setLayerType(int layerType, Paint paint) { argument
H A DView.java12900 * @param layerType The type of layer to use with this view, must be one of
12915 public void setLayerType(int layerType, Paint paint) { argument
12916 if (layerType < LAYER_TYPE_NONE || layerType > LAYER_TYPE_HARDWARE) {
12921 if (layerType == mLayerType) {
12922 if (layerType != LAYER_TYPE_NONE && paint != mLayerPaint) {
12942 mLayerType = layerType;
12977 int layerType = getLayerType();
12978 if (layerType != LAYER_TYPE_NONE) {
12980 if (layerType
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1735 * @param layerType {@link View#LAYER_TYPE_NONE} or {@link View#LAYER_TYPE_HARDWARE}
1737 private void setPileLayers(int layerType) { argument
1740 switch (layerType) {
1743 mPile.getChildAt(i).setLayerType(layerType, null);
1765 view.setLayerType(layerType, null);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1935 public void setLayerType(int layerType, Paint paint) { argument

Completed in 322 milliseconds