HomeSort by relevance Sort by last modified time
    Searched refs:layer (Results 26 - 50 of 396) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/tests/exiftool_parser/
parser.py 41 layer = 0 variable
50 if new_layer > layer:
53 for i in range(layer - new_layer):
56 layer = new_layer variable
61 if new_layer < layer:
62 for i in range(layer - new_layer):
64 layer = new_layer variable
  /external/webkit/Source/WebCore/platform/graphics/chromium/
PluginLayerChromium.cpp 60 void PluginLayerChromium::pushPropertiesTo(CCLayerImpl* layer)
62 LayerChromium::pushPropertiesTo(layer);
64 CCPluginLayerImpl* pluginLayer = static_cast<CCPluginLayerImpl*>(layer);
LayerChromium.cpp 107 // If we're changing layer renderers then we need to free up any resources
214 const LayerChromium* layer = this; local
215 for (LayerChromium* superlayer = layer->superlayer(); superlayer; layer = superlayer, superlayer = superlayer->superlayer()) { }
216 return layer;
222 LayerChromium* layer = m_sublayers[0].get(); local
223 ASSERT(layer->superlayer());
224 layer->removeFromSuperlayer();
253 // For the root layer, setNeedsCommit has no effect.
294 void LayerChromium::pushPropertiesTo(CCLayerImpl* layer)
    [all...]
LayerRendererChromium.cpp 201 // Recheck that we still have a root layer. This may become null if
283 // concept of a large content layer.
354 LayerChromium* layer = ccLayerImpl->owner(); local
355 if (layer->bounds().isEmpty())
358 const IntRect targetSurfaceRect = layer->ccLayerImpl()->scissorRect();
360 if (layer->drawsContent())
361 layer->paintContentsIfDirty(targetSurfaceRect);
362 if (layer->maskLayer() && layer->maskLayer()->drawsContent())
363 layer->maskLayer()->paintContentsIfDirty(targetSurfaceRect)
    [all...]
  /frameworks/base/core/jni/android/graphics/
LayerRasterizer.cpp 10 static void addLayer(JNIEnv* env, jobject, SkLayerRasterizer* layer, const SkPaint* paint, float dx, float dy) {
11 SkASSERT(layer);
13 layer->addLayer(*paint, SkFloatToScalar(dx), SkFloatToScalar(dy));
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderLayer.mm 42 - (id)initWithRenderLayer:(RenderLayer *)layer;
49 + (NSString *)nameForLayer:(RenderLayer*)layer
51 RenderObject* renderer = layer->renderer();
72 if (layer->isReflection())
78 + (NSString *)compositingInfoForLayer:(RenderLayer*)layer
80 if (!layer->isComposited())
85 RenderLayerBacking* backing = layer->backing();
91 layerType = @"composited: tiled layer";
97 layerType = @"composited: container layer";
111 - (id)initWithRenderLayer:(RenderLayer*)layer
    [all...]
  /external/iproute2/include/linux/tc_ematch/
tc_em_nbyte.h 10 __u8 layer:4; member in struct:tcf_em_nbyte
tc_em_cmp.h 13 __u8 layer:4; member in struct:tcf_em_cmp
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_yuv.c 2 SDL - Simple DirectMedia Layer
42 IDirectFBDisplayLayer *layer; member in struct:private_yuvhwdata
78 IDirectFBDisplayLayer *layer; local
91 ret = dfb->GetDisplayLayer (dfb, hwdata->layer_id, &layer);
122 ret = layer->SetCooperativeLevel (layer, DLSCL_ADMINISTRATIVE);
126 layer->Release (layer);
130 ret = layer->SetConfiguration (layer, &conf)
258 IDirectFBDisplayLayer *layer = overlay->hwdata->layer; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderReplica.cpp 72 // Turn around and paint the parent layer. Use temporary clipRects, so that the layer doesn't end up caching clip rects
74 layer()->parent()->paintLayer(layer()->transform() ? layer()->parent() : layer()->enclosingTransformedAncestor(),
  /external/libppp/src/
nat_cmd.h 42 extern struct layer natlayer;
async.h 53 extern struct layer asynclayer;
layer.h 26 * $FreeBSD: src/usr.sbin/ppp/layer.h,v 1.3.62.1 2010/12/21 17:10:29 kensmith Exp $
45 struct layer { struct
  /frameworks/base/libs/hwui/
LayerCache.h 21 #include "Layer.h"
48 * Returns a layer large enough for the specified dimensions. If no suitable
49 * layer can be found, a new one is created and returned. If creating a new
50 * layer fails, NULL is returned.
52 * When a layer is obtained from the cache, it is removed and the total
55 * @param width The desired width of the layer
56 * @param height The desired height of the layer
58 Layer* get(const uint32_t width, const uint32_t height);
61 * Adds the layer to the cache. The layer will not be added if there i
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcColorEquiv.cpp 356 hwc_layer_1_t *layer = &list->hwLayers[0]; local
357 layer->handle = refFrame->handle;
358 layer->blending = HWC_BLENDING_NONE;
359 layer->sourceCrop.left = 0;
360 layer->sourceCrop.top = 0;
361 layer->sourceCrop.right = width;
362 layer->sourceCrop.bottom = refHeight;
363 layer->displayFrame.left = 0;
364 layer->displayFrame.top = 0;
365 layer->displayFrame.right = width
    [all...]
hwcStress.cpp 46 * be made with each of the layer handles changed to a different
423 // Any transform tends to create a layer that the hardware
431 hwc_layer_1_t *layer = &list->hwLayers[n1]; local
432 layer->handle = gBuf->handle;
434 layer->blending = blendingOps[testRandMod(NUMA(blendingOps))];
435 layer->flags = (testRandFract() > rareRatio) ? 0
438 layer->transform = (noTransform || testRandFract() > rareRatio) ? 0
441 layer->sourceCrop.left = testRandMod(gBuf->getWidth());
442 layer->sourceCrop.top = testRandMod(gBuf->getHeight());
443 layer->sourceCrop.right = layer->sourceCrop.lef
502 hwc_layer_1_t *layer = &list->hwLayers[n1]; local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
TrackMetaData.java 41 int layer; field in class:TrackMetaData
108 return layer;
111 public void setLayer(int layer) {
112 this.layer = layer;
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
MediaLayer.cpp 38 ALOGV("Creating Media Layer %p", this);
41 MediaLayer::MediaLayer(const MediaLayer& layer) : LayerAndroid(layer)
43 m_mediaTexture = layer.m_mediaTexture;
47 m_outlineSize = layer.m_outlineSize;
48 ALOGV("Creating Media Layer Copy %p -> %p", &layer, this);
53 ALOGV("Deleting Media Layer");
63 // widget, which causes the layer to expand to accommodate the
73 // the layer's shader draws the content inverted so we must und
    [all...]
FixedPositioning.h 96 FixedPositioning(LayerAndroid* layer = 0) : m_layer(layer) {}
97 FixedPositioning(LayerAndroid* layer, const FixedPositioning& position);
101 virtual FixedPositioning* copy(LayerAndroid* layer) const {
102 return new FixedPositioning(layer, *this);
114 SkRect viewRect) { // view rect, can be smaller than the layer's
131 void contentDraw(SkCanvas* canvas, Layer::PaintStyle style);
136 friend void android::serializeLayer(LayerAndroid* layer, SkWStream* stream);
152 // When fixed element is undefined or auto, the render layer's position
159 BackgroundImagePositioning(LayerAndroid* layer)
    [all...]
AndroidAnimation.h 50 bool evaluate(LayerAndroid* layer, double time);
51 virtual void applyForProgress(LayerAndroid* layer, float progress) = 0;
90 virtual void applyForProgress(LayerAndroid* layer, float progress);
103 virtual void applyForProgress(LayerAndroid* layer, float progress);
  /external/webkit/Source/WebCore/platform/graphics/texmap/
GraphicsLayerTextureMapper.h 49 virtual void setParent(GraphicsLayer* layer);
53 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
54 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
57 virtual void setMaskLayer(GraphicsLayer* layer);
100 inline static GraphicsLayerTextureMapper* toGraphicsLayerTextureMapper(GraphicsLayer* layer)
102 return static_cast<GraphicsLayerTextureMapper*>(layer);
  /external/webkit/Source/WebKit/android/nav/
DrawExtra.h 67 void addHighlightRegion(const LayerAndroid* layer, const Vector<IntRect>& rects,
74 SkRegion* getHighlightRegionsForLayer(const LayerAndroid* layer);
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 39 #include "Layer.h"
202 void GraphicsLayerAndroid::setReplicatedLayer(GraphicsLayer* layer)
204 GraphicsLayer::setReplicatedLayer(layer);
242 LayerAndroid* layer = new IFrameLayerAndroid(*m_contentLayer); local
244 m_contentLayer = layer;
247 // If we are a fixed position layer, just set it
337 ALOGV("(%x) layer %d setSize (%.2f,%.2f)", this,
341 // If it is a media layer the size may have changed as a result of the media
344 RenderLayer* layer = renderLayerFromClient(m_client); local
345 if (layer && m_contentLayer->isMedia())
387 GraphicsLayer* layer = m_children[i]; local
512 RenderLayer* layer = renderLayerFromClient(m_client); local
546 LayerAndroid* layer = new IFrameContentLayerAndroid(*m_contentLayer); local
569 LayerAndroid* layer = new LayerAndroid(*m_contentLayer); local
643 LayerAndroid* layer = new FixedBackgroundLayerAndroid(*m_contentLayer); local
661 RenderLayer* layer = renderLayerFromClient(m_client); local
692 RenderLayer* layer = renderLayerFromClient(m_client); local
749 setScrollLimits(static_cast<ScrollableLayerAndroid*>(m_foregroundLayer), layer); local
802 setScrollLimits(static_cast<ScrollableLayerAndroid*>(m_contentLayer), layer); local
1115 LayerAndroid* layer = m_contentLayer; local
1173 GraphicsLayerAndroid* layer = static_cast<GraphicsLayerAndroid*>(m_children[i]); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 43 virtual void setParent(GraphicsLayer* layer);
48 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
49 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
52 virtual void setMaskLayer(GraphicsLayer* layer);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_ematch/
tc_em_cmp.h 13 __u8 layer:4; member in struct:tcf_em_cmp

Completed in 1716 milliseconds

12 3 4 5 6 7 8 91011>>