HomeSort by relevance Sort by last modified time
    Searched refs:layers (Results 1 - 25 of 52) sorted by null

1 2 3

  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorStateDrawable.java 34 public ColorStateDrawable(Drawable[] layers, int color) {
35 super(layers);
  /frameworks/base/graphics/java/android/graphics/drawable/
LayerDrawable.java 62 * Create a new layer drawable with the list of specified layers.
64 * @param layers A list of drawables to use as layers in this new drawable.
66 public LayerDrawable(Drawable[] layers) {
67 this(layers, null);
71 * Create a new layer drawable with the specified list of layers and the specified
74 * @param layers The list of layers to add to this drawable.
77 LayerDrawable(Drawable[] layers, LayerState state) {
79 int length = layers.length
219 final ChildDrawable[] layers = mLayerState.mChildren; local
279 final ChildDrawable[] layers = mLayerState.mChildren; local
    [all...]
TransitionDrawable.java 74 * 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) {
78 this(new TransitionState(null, null, null), layers);
83 * layers must be added to this drawable.
95 private TransitionDrawable(TransitionState state, Drawable[] layers) {
96 super(layers, state);
  /packages/apps/Phone/src/com/android/phone/
AnimationUtils.java 157 public CrossFadeDrawable(Drawable[] layers) {
158 super(layers);
199 Drawable[] layers = new Drawable[2]; local
200 layers[0] = first;
201 layers[1] = second;
202 return new CrossFadeDrawable(layers);
260 Drawable[] layers = new Drawable[2];
261 layers[0] = from;
262 layers[1] = to;
263 TransitionDrawable transitionDrawable = new TransitionDrawable(layers);
    [all...]
InCallTouchUi.java 710 // The various layers of artwork for this button come from
711 // btn_compound_audio.xml. Keep track of which layers we want to be
782 LayerDrawable layers = (LayerDrawable) mAudioButton.getBackground(); local
    [all...]
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp 843 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskImage ? style->maskLayers() : style->backgroundLayers(); local
866 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskSize ? style->maskLayers() : style->backgroundLayers(); local
878 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskRepeat ? style->maskLayers() : style->backgroundLayers(); local
890 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskComposite ? style->maskLayers() : style->backgroundLayers(); local
902 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskAttachment ? style->maskLayers() : style->backgroundLayers(); local
918 const FillLayer* layers = (propertyID == CSSPropertyWebkitMaskClip || propertyID == CSSPropertyWebkitMaskOrigin) ? style->maskLayers() : style->backgroundLayers(); local
935 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskPosition ? style->maskLayers() : style->backgroundLayers(); local
955 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskPositionX ? style->maskLayers() : style->backgroundLayers(); local
967 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskPositionY ? style->maskLayers() : style->backgroundLayers(); local
    [all...]
CSSStyleApplyProperty.cpp 197 const FillLayer* (RenderStyle::*layers)() const, bool (FillLayer::*test)() const, T (FillLayer::*get)() const,
203 , m_layers(layers)
231 /* Reset any remaining layers to not have the property set. */
250 /* Walk each value and put it into a layer, creating new layers as needed. */
267 /* Reset all remaining layers to not have the property set. */
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextPlatformPrivateCairo.h 102 Vector<float> layers; member in class:WebCore::GraphicsContextPlatformPrivate
GraphicsContextCairo.cpp 931 m_data->layers.append(opacity);
943 cairo_paint_with_alpha(cr, m_data->layers.last());
944 m_data->layers.removeLast();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextCairoWin.cpp 113 if (context->layers.size())
114 cairo_paint_with_alpha(cr, context->layers.last());
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
BaseLayerAndroid.cpp 126 FillLayer* layers = style->accessBackgroundLayers(); local
127 StyleImage* styleImage = layers->image();
342 FillLayer* layers = style->accessBackgroundLayers();
343 StyleImage* styleImage = layers->image();
  /frameworks/base/libs/hwui/
Caches.cpp 142 INIT_LOGD(" Layers updates debug enabled: %s", property);
264 Vector<Layer*> layers; local
269 layers = mLayerGarbage;
280 count = layers.size();
282 Layer* layer = layers.itemAt(i);
285 layers.clear();
DisplayList.cpp 213 const Vector<Layer*>& layers = recorder.getLayers(); local
214 for (size_t i = 0; i < layers.size(); i++) {
215 mLayers.add(layers.itemAt(i));
216 caches.resourceCache.incrementRefcountLocked(layers.itemAt(i));
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 460 Drawable[] layers = new Drawable[2]; local
467 layers[0] = new BitmapDrawable(table.mResources, decodedPhoto);
468 layers[1] = table.mResources.getDrawable(R.drawable.frame);
469 LayerDrawable layerList = new LayerDrawable(layers);
927 LayerDrawable layers = (LayerDrawable) image.getDrawable(); local
947 LayerDrawable layers = (LayerDrawable) image.getDrawable(); local
    [all...]
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 275 void DisplayDevice::setVisibleLayersSortedByZ(const Vector< sp<Layer> >& layers) {
276 mVisibleLayersSortedByZ = layers;
278 size_t count = layers.size();
280 const sp<Layer>& layer(layers[i]);
DisplayDevice.h 102 void setVisibleLayersSortedByZ(const Vector< sp<Layer> >& layers);
187 // list of visible layers on that display
  /external/skia/legacy/src/effects/
SkLayerRasterizer.cpp 46 static bool compute_bounds(const SkDeque& layers, const SkPath& path,
49 SkDeque::F2BIter iter(layers);
  /external/skia/src/effects/
SkLayerRasterizer.cpp 47 static bool compute_bounds(const SkDeque& layers, const SkPath& path,
50 SkDeque::F2BIter iter(layers);
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 183 if (layers.isEmpty())
185 return &layers.top()->painter;
190 QStack<TransparencyLayer*> layers; member in class:WebCore::GraphicsContextPlatformPrivate
191 // Counting real layers. Required by inTransparencyLayer() calls
192 // For example, layers with valid alphaMask are not real layers
279 while (!m_data->layers.isEmpty())
299 if (!m_data->layers.isEmpty() && !m_data->layers.top()->alphaMask.isNull())
300 ++m_data->layers.top()->saveCounter
    [all...]
  /frameworks/native/cmds/flatland/
Main.cpp 46 // 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
341 LayerDesc ld = mDesc.layers[i];
488 if (desc.layers[i].rendererFactory == NULL) {
501 // The surface into which layers are composited
  /external/webkit/Source/WebCore/
Android.mk 660 platform/graphics/android/layers/AndroidAnimation.cpp \
661 platform/graphics/android/layers/BaseLayerAndroid.cpp \
662 platform/graphics/android/layers/CanvasLayer.cpp \
663 platform/graphics/android/layers/CanvasTexture.cpp \
664 platform/graphics/android/layers/DumpLayer.cpp \
665 platform/graphics/android/layers/FixedPositioning.cpp \
666 platform/graphics/android/layers/IFrameContentLayerAndroid.cpp \
667 platform/graphics/android/layers/IFrameLayerAndroid.cpp \
668 platform/graphics/android/layers/Layer.cpp \
669 platform/graphics/android/layers/LayerAndroid.cpp
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebframe.cpp 345 void QWebFramePrivate::renderRelativeCoords(GraphicsContext* context, QFlags<QWebFrame::RenderLayer> layers, const QRegion& clip)
359 if (layers & QWebFrame::ContentsLayer) {
388 renderFrameExtras(context, layers, clip);
398 void QWebFramePrivate::renderFrameExtras(GraphicsContext* context, QFlags<QWebFrame::RenderLayer> layers, const QRegion& clip)
400 if (!(layers & (QWebFrame::PanIconLayer | QWebFrame::ScrollBarLayer)))
416 if (layers & QWebFrame::ScrollBarLayer
428 if (layers & QWebFrame::PanIconLayer)
523 This enum describes the layers available for rendering using \l{QWebFrame::}{render()}.
524 The layers can be OR-ed together from the following list:
530 \value AllLayers Includes all the above layers
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 562 final Drawable[] layers = new Drawable[2]; local
567 layers[0] = previousTransitionDrawable.getDrawable(
570 layers[0] = previousDrawable;
572 layers[1] = new BitmapDrawable(mContext.getResources(), cachedBitmap);
573 TransitionDrawable drawable = new TransitionDrawable(layers);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerRendererChromium.h 67 // Class that handles drawing of composited render layers using GL.
80 // updates and draws the current layers onto the backbuffer
145 void updatePropertiesAndRenderSurfaces(LayerChromium*, const TransformationMatrix& parentMatrix, LayerList& renderSurfaceLayerList, LayerList& layers);
  /external/opencv/ml/src/
mlcnn.cpp 114 first_layer = last_layer = network->layers; \
227 CvCNNLayer* first_layer = network->layers;
340 first_layer = cnn_model->network->layers;
480 network->layers = first_layer;
505 prev_layer = network->layers;
551 layer = network->layers;
    [all...]

Completed in 625 milliseconds

1 2 3