HomeSort by relevance Sort by last modified time
    Searched refs:layerBounds (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
LayerFragment.h 43 layerBounds = bounds;
51 layerBounds.moveBy(offset);
66 LayoutRect layerBounds;
RenderLayerClipper.cpp 182 LayoutRect layerBounds;
186 calculateRects(context, m_renderer.view()->unscaledDocumentRect(), layerBounds, backgroundRect, foregroundRect, outlineRect);
194 LayoutRect layerBounds;
197 calculateRects(context, PaintInfo::infiniteRect(), layerBounds, backgroundRect, foregroundRect, outlineRect);
210 void RenderLayerClipper::calculateRects(const ClipRectsContext& context, const LayoutRect& paintDirtyRect, LayoutRect& layerBounds,
231 layerBounds = LayoutRect(offset, m_renderer.layer()->size());
RenderLayerClipper.h 111 // This method figures out our layerBounds in coordinates relative to
115 void calculateRects(const ClipRectsContext&, const LayoutRect& paintDirtyRect, LayoutRect& layerBounds,
RenderTreeAsText.cpp 507 const LayoutRect& layerBounds, const LayoutRect& backgroundClipRect, const LayoutRect& clipRect, const LayoutRect& outlineClipRect,
510 IntRect adjustedLayoutBounds = pixelSnappedIntRect(layerBounds);
587 LayoutRect layerBounds;
589 layer->clipper().calculateRects(ClipRectsContext(rootLayer, UncachedClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect);
593 layerBounds.setSize(layer->size().expandedTo(pixelSnappedIntSize(layer->renderBox()->maxLayoutOverflow(), LayoutPoint(0, 0))));
598 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : layer->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
603 write(ts, *layer, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), LayerPaintPhaseBackground, indent, behavior);
617 write(ts, *layer, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
RenderLayer.cpp     [all...]
RenderLayer.h 236 bool intersectsDamageRect(const LayoutRect& layerBounds, const LayoutRect& damageRect, const RenderLayer* rootLayer, const LayoutPoint* offsetFromRoot = 0) const;
    [all...]
RenderLayerScrollableArea.cpp     [all...]
  /frameworks/base/libs/hwui/
RenderProperties.cpp 159 Rect layerBounds(0, 0, getWidth(), getHeight());
163 getClippingRectForFlags(clipFlags, &layerBounds);
168 (int)layerBounds.left, (int)layerBounds.top, (int)layerBounds.right, (int)layerBounds.bottom,
RenderNode.cpp 424 Rect layerBounds(0, 0, getWidth(), getHeight());
428 properties().getClippingRectForFlags(clipFlags, &layerBounds);
434 (int)layerBounds.getWidth(), (int)layerBounds.getHeight());
437 layerBounds.left, layerBounds.top, layerBounds.right, layerBounds.bottom,
    [all...]
OpenGLRenderer.cpp     [all...]
  /external/chromium_org/third_party/skia/tests/
PictureStateTreeTest.cpp 39 SkRect layerBounds = SkRect::MakeXYWH(0, 0, 90, 90);
40 canvas->saveLayer(&layerBounds, NULL);
42 canvas->clipRect(layerBounds);
CanvasStateTest.cpp 209 SkRect layerBounds = SkRect::Make(layerRect);
210 canvas.saveLayerAlpha(&layerBounds, 128, flags[j]);
  /external/skia/tests/
PictureStateTreeTest.cpp 39 SkRect layerBounds = SkRect::MakeXYWH(0, 0, 90, 90);
40 canvas->saveLayer(&layerBounds, NULL);
42 canvas->clipRect(layerBounds);
CanvasStateTest.cpp 142 SkRect layerBounds = SkRect::Make(layerRect);
143 canvas.saveLayerAlpha(&layerBounds, 128, flags[j]);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingLayerAssigner.cpp 265 IntRect layerBounds = layer->clippedAbsoluteBoundingBox();
266 squashingState.totalAreaOfSquashedRects += layerBounds.size().area();
267 squashingState.boundingRect.unite(layerBounds);
CompositedLayerMapping.cpp     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 230 return new GcSnapshot(this, null /*layerbounds*/, null /*paint*/, flags);
238 * @param layerBounds the layer bounds
246 public GcSnapshot saveLayer(RectF layerBounds, Paint_Delegate paint, int flags) {
247 return new GcSnapshot(this, layerBounds, paint, flags);
267 * @param layerBounds the region of the layer. Optional, if null, this is a normal save()
272 private GcSnapshot(GcSnapshot previous, RectF layerBounds, Paint_Delegate paint, int flags) {
286 if (layerBounds != null) {
290 // transform the layerBounds with the current transform and stores it into a int rect
292 mapRect(matrix, rect2, layerBounds);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext.cpp     [all...]

Completed in 371 milliseconds