Home
last modified time | relevance | path

Searched refs:layers (Results 1 – 25 of 81) sorted by relevance

1234

/external/webkit/Source/WebCore/css/
DCSSComputedStyleDeclaration.cpp843 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskImage ? style->maskLayers() : style->… in getPropertyCSSValue() local
844 if (!layers) in getPropertyCSSValue()
847 if (!layers->next()) { in getPropertyCSSValue()
848 if (layers->image()) in getPropertyCSSValue()
849 return layers->image()->cssValue(); in getPropertyCSSValue()
855 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) { in getPropertyCSSValue()
866 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskSize ? style->maskLayers() : style->b… in getPropertyCSSValue() local
867 if (!layers->next()) in getPropertyCSSValue()
868 return fillSizeToCSSValue(layers->size(), primitiveValueCache); in getPropertyCSSValue()
871 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()
[all …]
DCSSStyleApplyProperty.cpp197 …const FillLayer* (RenderStyle::*layers)() const, bool (FillLayer::*test)() const, T (FillLayer::*g… in ApplyPropertyFillLayer()
203 , m_layers(layers) in ApplyPropertyFillLayer()
/external/chromium/chrome/common/extensions/docs/images/intermediate/
DREADME.txt15 Turn different layers on and off to get the figures. E.g., arch-1.gif
16 uses 2 layers: browser and 1ts. There's probably a better way, but to
17 create the images I set the layers' visibility appropriately and took
/external/webkit/Source/WebCore/platform/graphics/android/layers/
DBaseLayerAndroid.cpp126 FillLayer* layers = style->accessBackgroundLayers(); in FixedBackgroundImageLayerAndroid() local
127 StyleImage* styleImage = layers->image(); in FixedBackgroundImageLayerAndroid()
342 FillLayer* layers = style->accessBackgroundLayers(); in GetCachedImage() local
343 StyleImage* styleImage = layers->image(); in GetCachedImage()
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsContextQt.cpp183 if (layers.isEmpty()) in p()
185 return &layers.top()->painter; in p()
190 QStack<TransparencyLayer*> layers; member in WebCore::GraphicsContextPlatformPrivate
279 while (!m_data->layers.isEmpty()) in platformDestroy()
299 if (!m_data->layers.isEmpty() && !m_data->layers.top()->alphaMask.isNull()) in savePlatformState()
300 ++m_data->layers.top()->saveCounter; in savePlatformState()
307 if (!m_data->layers.isEmpty() && !m_data->layers.top()->alphaMask.isNull()) in restorePlatformState()
308 if (!--m_data->layers.top()->saveCounter) in restorePlatformState()
955 m_data->layers.push(new TransparencyLayer(p, p->transform().mapRect(rect), 1.0, alphaMask)); in pushTransparencyLayerInternal()
978 m_data->layers.push(new TransparencyLayer(p, QRect(x, y, w, h), opacity, emptyAlphaMask)); in beginTransparencyLayer()
[all …]
/external/webkit/Source/WebCore/platform/graphics/win/
DGraphicsContextCairoWin.cpp113 if (context->layers.size()) in drawBitmapToContext()
114 cairo_paint_with_alpha(cr, context->layers.last()); in drawBitmapToContext()
/external/webkit/Source/WebCore/
DAndroid.mk660 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/WebCore/platform/graphics/cairo/
DGraphicsContextPlatformPrivateCairo.h102 Vector<float> layers; variable
DGraphicsContextCairo.cpp931 m_data->layers.append(opacity); in beginTransparencyLayer()
943 cairo_paint_with_alpha(cr, m_data->layers.last()); in endTransparencyLayer()
944 m_data->layers.removeLast(); in endTransparencyLayer()
/external/skia/src/effects/
DSkLayerRasterizer.cpp46 static bool compute_bounds(const SkDeque& layers, const SkPath& path, in compute_bounds() argument
49 SkDeque::F2BIter iter(layers); in compute_bounds()
/external/webkit/Source/WebKit/qt/Api/
Dqwebframe.cpp345 …rRelativeCoords(GraphicsContext* context, QFlags<QWebFrame::RenderLayer> layers, const QRegion& cl… in renderRelativeCoords() argument
359 if (layers & QWebFrame::ContentsLayer) { in renderRelativeCoords()
388 renderFrameExtras(context, layers, clip); in renderRelativeCoords()
398 …nderFrameExtras(GraphicsContext* context, QFlags<QWebFrame::RenderLayer> layers, const QRegion& cl… in renderFrameExtras() argument
400 if (!(layers & (QWebFrame::PanIconLayer | QWebFrame::ScrollBarLayer))) in renderFrameExtras()
416 if (layers & QWebFrame::ScrollBarLayer in renderFrameExtras()
428 if (layers & QWebFrame::PanIconLayer) in renderFrameExtras()
/external/chromium/chrome/browser/ui/cocoa/
Dtabpose_window.mm269 // Until then, accelerated layers (CoreAnimation NPAPI plugins, compositor)
330 // layers except the one the user clicks on. But since we can't know which
331 // layer that is, request full-resolution layers for all tabs. This is
962 // Updates the visibility of all closebutton layers.
1145 // In a block so that the layers don't fade in.
1161 selectionHighlight_.zPosition = -1; // Behind other layers.
1217 // Needs to happen after all layers have been added to |rootLayer_|, else
1458 // Move the selected layer on top of all other layers.
1470 // Animate layers out, all in one transaction.
1577 // Update old layers.
[all …]
/external/chromium/googleurl/
DREADME.txt77 The library is divided into four layers. They are listed here from the lowest
79 layers below it.
134 The canonicalization and parsing layers do not know anything about the URI
/external/opencv/ml/src/
Dmlcnn.cpp114 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;
1643 layer = cnn->network->layers;
/external/webkit/Tools/DumpRenderTree/mac/
DPixelDumpSupportMac.mm171 …// displayIfNeeded does not update the CA layers if the layer-hosting view was not marked as needi…
172 …// we're at the mercy of CA's display-link callback to update layers in time. So we need to force …
173 // to get AppKit to update the CA layers synchronously.
DDumpRenderTreeWindow.mm112 // to update layers and start animations.
/external/webkit/Source/WebCore/platform/graphics/chromium/
DLayerRendererChromium.h145 …*, const TransformationMatrix& parentMatrix, LayerList& renderSurfaceLayerList, LayerList& layers);
/external/libusb/
DPORTING17 layers, based on the async interface). Your backend must also provide
/external/mesa3d/docs/
DMESA_texture_array.spec153 "<zoffset>" to include layers of an array texture.)
732 layers for texture
752 using [0, layers-1] coordinates is much more natural.
/external/webkit/Source/WebCore/platform/graphics/mac/
DWebLayer.mm74 // smaller than the layer bounds (e.g. tiled layers)
/external/webkit/
DAndroid.mk132 $(WEBCORE_PATH)/platform/graphics/android/layers \
/external/webkit/Source/WebKit/win/Interfaces/
DIWebBackForwardList.idl40 navigation to happen in other layers of the stack; they are only for maintaining this data
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-216320.js835 if(document.layers) {
1009 if(document.layers){
/external/clang/lib/StaticAnalyzer/
DREADME.txt7 The analyzer library has two layers: a (low-level) static analysis
/external/webkit/Source/WebCore/rendering/
DRenderBox.h438 …bool repaintLayerRectsForImage(WrappedImagePtr image, const FillLayer* layers, bool drawingBackgro…

1234