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

1 2 3 4 5 6 7 8 91011

  /external/webkit/Source/WebCore/platform/graphics/mac/
WebTiledLayer.mm 62 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
63 if (layer && layer->owner() && layer->owner()->platformCALayerDrawsContent())
69 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
70 if (layer)
71 setLayerNeedsDisplayInRect(self, layer->owner(), dirtyRect);
77 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
78 if (layer && layer->owner()
    [all...]
WebLayer.mm 43 void drawLayerContents(CGContextRef context, CALayer *layer, WebCore::PlatformCALayer* platformLayer)
51 CGRect layerBounds = [layer bounds];
74 // smaller than the layer bounds (e.g. tiled layers)
82 bool isTiledLayer = [layer isKindOfClass:[CATiledLayer class]];
111 void setLayerNeedsDisplayInRect(CALayer *layer, WebCore::PlatformCALayerClient* layerContents, CGRect rect)
114 struct objc_super layerSuper = { layer, class_getSuperclass(object_getClass(layer)) };
116 rect = CGRectApplyAffineTransform(rect, [layer contentsTransform]);
119 rect.origin.y = [layer bounds].size.height - rect.origin.y - rect.size.height;
125 CGRect bounds = [layer bounds]
    [all...]
  /frameworks/base/libs/hwui/
LayerCache.cpp 37 INIT_LOGD(" Setting layer cache size to %sMB", property);
40 INIT_LOGD(" Using default layer cache size of %.2fMB", DEFAULT_LAYER_CACHE_SIZE);
69 void LayerCache::deleteLayer(Layer* layer) {
70 if (layer) {
71 LAYER_LOGD("Destroying layer %dx%d", layer->getWidth(), layer->getHeight());
72 mSize -= layer->getWidth() * layer->getHeight() * 4
88 Layer* layer = NULL; local
    [all...]
LayerRenderer.cpp 34 LayerRenderer::LayerRenderer(Layer* layer): mLayer(layer) {
41 LAYER_RENDERER_LOGD("Rendering into layer, fbo = %d", mLayer->getFbo());
45 const float width = mLayer->layer.getWidth();
46 const float height = mLayer->layer.getHeight();
71 LAYER_RENDERER_LOGD("Finished rendering into layer, fbo = %d", mLayer->getFbo());
146 const float height = mLayer->layer.getHeight();
182 Layer* LayerRenderer::createLayer(uint32_t width, uint32_t height, bool isOpaque) {
183 LAYER_RENDERER_LOGD("Requesting new render layer %dx%d", width, height)
192 Layer* layer = Caches::getInstance().layerCache.get(width, height); local
266 Layer* layer = new Layer(0, 0); local
    [all...]
LayerCache.h 21 #include "Layer.h"
49 * Returns a layer large enough for the specified dimensions. If no suitable
50 * layer can be found, a new one is created and returned. If creating a new
51 * layer fails, NULL is returned.
53 * When a layer is obtained from the cache, it is removed and the total
56 * @param width The desired width of the layer
57 * @param width The desired height of the layer
59 Layer* get(const uint32_t width, const uint32_t height);
62 * Adds the layer to the cache. The layer will not be added if there i
    [all...]
LayerRenderer.h 23 #include "Layer.h"
47 ANDROID_API LayerRenderer(Layer* layer);
57 ANDROID_API static Layer* createTextureLayer(bool isOpaque);
58 ANDROID_API static Layer* createLayer(uint32_t width, uint32_t height, bool isOpaque = false);
59 ANDROID_API static bool resizeLayer(Layer* layer, uint32_t width, uint32_t height);
60 ANDROID_API static void updateTextureLayer(Layer* layer, uint32_t width, uint32_t height,
62 ANDROID_API static void destroyLayer(Layer* layer)
    [all...]
  /external/opencv/ml/src/
mlcnn.cpp 70 static void icvCNNetworkAddLayer( CvCNNetwork* network, CvCNNLayer* layer );
73 /* In all layer functions we denote input by X and output by Y, where
78 /*------------------------ functions for convolutional layer ---------------------------*/
81 static void icvCNNConvolutionForward( CvCNNLayer* layer, const CvMat* X, CvMat* Y );
83 static void icvCNNConvolutionBackward( CvCNNLayer* layer, int t,
86 /*------------------------ functions for sub-sampling layer ----------------------------*/
89 static void icvCNNSubSamplingForward( CvCNNLayer* layer, const CvMat* X, CvMat* Y );
91 static void icvCNNSubSamplingBackward( CvCNNLayer* layer, int t,
94 /*------------------------ functions for full connected layer --------------------------*/
97 static void icvCNNFullConnectForward( CvCNNLayer* layer, const CvMat* X, CvMat* Y )
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
ScrollableLayerAndroid.h 31 ScrollableLayerAndroid(const ScrollableLayerAndroid& layer)
32 : LayerAndroid(layer)
33 , m_scrollLimits(layer.m_scrollLimits) {}
34 ScrollableLayerAndroid(const LayerAndroid& layer)
35 : LayerAndroid(layer)
47 // Scrolls to the given position in the layer.
63 // Given a rect in the layer, scrolls to bring the rect into view. Uses a
66 // visible area of the layer, we favor the top and left of the rect.
70 friend void android::serializeLayer(LayerAndroid* layer, SkWStream* stream);
74 // The position of the visible area of the layer, relative to the paren
    [all...]
ClassTracker.cpp 73 void ClassTracker::add(LayerAndroid* layer)
76 m_layers.append(layer);
79 void ClassTracker::remove(LayerAndroid* layer)
82 m_layers.remove(m_layers.find(layer));
101 XLOG("*** textures: %d/%d (%.2f Mb), layer textures: %d/%d (%.2f Mb) : total used %.2f Mb",
110 LayerAndroid* layer = m_layers[i]; local
111 XLOG("[%d/%d] layer %x (%.2f, %.2f) of type %d, refcount(%d) has texture %x has image ref %x (%x) root: %x parent: %x",
112 i, m_layers.size(), layer,
113 layer->getWidth(), layer->getHeight()
    [all...]
PaintedSurface.cpp 98 XLOG("prepare layer %d %x at scale %.2f",
127 void PaintedSurface::setPaintingLayer(LayerAndroid* layer, const SkRegion& dirtyArea)
129 m_paintingLayer = layer;
131 m_tiledTexture->update(dirtyArea, layer->picture());
167 LayerAndroid* layer = m_drawingLayer;
169 if (!layer)
172 IntRect unclippedArea = layer->unclippedArea();
173 IntRect clippedVisibleArea = layer->visibleArea();
181 if (layer->isFixed())
185 if (layer->contentIsScrollable(
    [all...]
  /external/webkit/Source/WebKit/android/jni/
ViewStateSerializer.cpp 31 #include "Layer.h"
87 LayerAndroid* layer = static_cast<LayerAndroid*>(baseLayer->getChild(i)); local
88 serializeLayer(layer, stream);
100 BaseLayerAndroid* layer = new BaseLayerAndroid();
103 layer->setBackgroundColor(color);
106 layer->setContent(picture);
112 layer->addChild(childLayer);
115 return layer;
242 void serializeLayer(LayerAndroid* layer, SkWStream* stream)
244 if (!layer) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
CanvasLayerChromium.cpp 60 void CanvasLayerChromium::pushPropertiesTo(CCLayerImpl* layer)
62 LayerChromium::pushPropertiesTo(layer);
64 CCCanvasLayerImpl* canvasLayer = static_cast<CCCanvasLayerImpl*>(layer);
PluginLayerChromium.cpp 60 void PluginLayerChromium::pushPropertiesTo(CCLayerImpl* layer)
62 LayerChromium::pushPropertiesTo(layer);
64 CCPluginLayerImpl* pluginLayer = static_cast<CCPluginLayerImpl*>(layer);
  /external/wpa_supplicant_8/hostapd/logwatch/
hostapd 29 if (my ($iface,$mac,$layer,$details) = ($line =~ /(.*?): STA (.*?) (.*?): (.*?)$/i)) {
34 $hostapd{$iface}->{$mac}->{$layer}->{$details}++;
45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) {
46 print " $layer:\n";
47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_ematch/
tc_em_nbyte.h 10 __u8 layer:4; member in struct:tcf_em_nbyte
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
ComposingText.java 36 * Text layer 0.
38 * This text layer holds key strokes.<br>
43 * Text layer 1.
45 * This text layer holds the result of the letter converter.<br>
50 * Text layer 2.
52 * This text layer holds the result of the consecutive clause converter.<br>
60 /** Composing text's layer data */
96 * @param layer Layer
101 public StrSegment getStrSegment(int layer, int pos)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLayerCompositor.cpp 129 // layer creation from the enclosing RenderIFrame.
321 // Host the document layer in the RenderView's root layer.
346 bool RenderLayerCompositor::updateBacking(RenderLayer* layer, CompositingChangeRepaint shouldRepaint)
350 if (needsToBeComposited(layer)) {
354 if (requiresCompositingForTransform(layer->renderer()))
357 // If we are a child of a scrollable layer, ignore the overlap from the
358 // scrollable layer as it can cause child layers to become composited
359 // siblings and will not scroll with the main content layer.
360 if (layer->hasOverflowParent()
1900 RenderLayer* layer = m_renderView->layer(); local
    [all...]
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(),
  /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/android/nav/
CachedLayer.cpp 39 const LayerAndroid* aLayer = layer(root);
41 DBG_NAV_LOGD("no layer in root=%p uniqueId=%d", root, mUniqueId);
52 // Next, add in the new position of the layer (could be different due to a
53 // fixed position layer).
57 // Add in any layer translation.
105 const Layer* parent = aLayer->getParent();
115 const LayerAndroid* CachedLayer::layer(const LayerAndroid* root) const function in class:android::CachedLayer
122 // return bounds relative to the layer as recorded when walking the dom
131 const LayerAndroid* aLayer = layer(root);
145 const LayerAndroid* aLayer = layer(root)
    [all...]
  /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
  /external/qemu/distrib/sdl-1.2.12/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...]
  /frameworks/base/services/surfaceflinger/
SurfaceTextureLayer.cpp 23 #include "Layer.h"
30 SurfaceTextureLayer::SurfaceTextureLayer(GLuint tex, const sp<Layer>& layer)
31 : SurfaceTexture(tex, true, GL_TEXTURE_EXTERNAL_OES, false), mLayer(layer) {
60 sp<Layer> layer(mLayer.promote());
61 if (layer != NULL) {
62 *outTransform = layer->getTransformHint();
71 sp<Layer> layer(mLayer.promote())
    [all...]
  /frameworks/base/opengl/tests/hwc/
hwcColorEquiv.cpp 357 hwc_layer_t *layer = &list->hwLayers[0]; local
358 layer->handle = refFrame->handle;
359 layer->blending = HWC_BLENDING_NONE;
360 layer->sourceCrop.left = 0;
361 layer->sourceCrop.top = 0;
362 layer->sourceCrop.right = width;
363 layer->sourceCrop.bottom = refHeight;
364 layer->displayFrame.left = 0;
365 layer->displayFrame.top = 0;
366 layer->displayFrame.right = width
    [all...]

Completed in 336 milliseconds

1 2 3 4 5 6 7 8 91011