Searched defs:layers (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/colorpicker/src/com/android/colorpicker/
H A DColorStateDrawable.java34 public ColorStateDrawable(Drawable[] layers, int color) { argument
35 super(layers);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DTransitionDrawable.java74 * Create a new transition drawable with the specified list of layers. At least
75 * 2 layers are required for this drawable to work properly.
77 public TransitionDrawable(Drawable[] layers) { argument
78 this(new TransitionState(null, null, null), layers);
83 * layers must be added to this drawable.
95 private TransitionDrawable(TransitionState state, Drawable[] layers) { argument
96 super(layers, state);
H A DLayerDrawable.java89 * Create a new layer drawable with the list of specified layers.
91 * @param layers A list of drawables to use as layers in this new drawable.
93 public LayerDrawable(Drawable[] layers) { argument
94 this(layers, null);
98 * Create a new layer drawable with the specified list of layers and the
101 * @param layers The list of layers to add to this drawable.
104 LayerDrawable(Drawable[] layers, LayerState state) { argument
107 final int length = layers
[all...]
/frameworks/native/cmds/flatland/
H A DMain.cpp46 // The dimensions of the space in which window layers are specified.
53 // The list of window layers.
54 LayerDesc layers[MAX_NUM_LAYERS]; member in struct:BenchmarkDesc
415 LayerDesc ld = mDesc.layers[i];
562 if (desc.layers[i].rendererFactory == NULL) {
575 // The surface into which layers are composited
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp297 void DisplayDevice::setVisibleLayersSortedByZ(const Vector< sp<Layer> >& layers) { argument
298 mVisibleLayersSortedByZ = layers;
300 size_t count = layers.size();
302 const sp<Layer>& layer(layers[i]);

Completed in 394 milliseconds