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

/frameworks/base/graphics/java/android/graphics/drawable/
H A DTransitionDrawable.java72 * Create a new transition drawable with the specified list of layers. At least
73 * 2 layers are required for this drawable to work properly.
75 public TransitionDrawable(Drawable[] layers) { argument
76 this(new TransitionState(null, null, null), layers);
81 * layers must be added to this drawable.
93 private TransitionDrawable(TransitionState state, Drawable[] layers) { argument
94 super(layers, state);
H A DLayerDrawable.java57 * Create a new layer drawable with the list of specified layers.
59 * @param layers A list of drawables to use as layers in this new drawable.
61 public LayerDrawable(Drawable[] layers) { argument
62 this(layers, null);
66 * Create a new layer drawable with the specified list of layers and the specified
69 * @param layers The list of layers to add to this drawable.
72 LayerDrawable(Drawable[] layers, LayerState state) { argument
74 int length = layers
[all...]
/frameworks/base/libs/surfaceflinger/
H A DSurfaceFlinger.h222 inline size_t size() const { return layers.size(); }
223 inline sp<LayerBase> const* array() const { return layers.array(); }
228 inline sp<LayerBase> operator [] (size_t i) const { return layers[i]; }
231 Vector< sp<LayerBase> > layers; member in class:android::SurfaceFlinger::LayerVector
H A DSurfaceFlinger.cpp83 : lookup(rhs.lookup), layers(rhs.layers)
95 LOGE_IF(layers[idx]!=key,
96 "LayerVector[%p]: layers[%d]=%p, key=%p",
97 this, int(idx), layers[idx].get(), key.get());
107 size_t count = layers.size();
111 sp<LayerBase> const* a = layers.array();
129 layers.insertAt(layer, order);
139 LOGE_IF(layers[index]!=layer,
140 "LayerVector[%p]: layers[
796 sp<LayerBase> const* layers = currentLayers.array(); local
809 sp<LayerBase> const* layers = currentLayers.array(); local
883 sp<LayerBase> const* const layers = drawingLayers.array(); local
900 sp<LayerBase> const* const layers = drawingLayers.array(); local
[all...]

Completed in 252 milliseconds