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

  /external/chromium_org/third_party/WebKit/Source/web/tests/
PaintAggregatorTest.cpp 58 EXPECT_TRUE(update.scrollRect.isEmpty());
80 EXPECT_TRUE(update.scrollRect.isEmpty());
105 EXPECT_TRUE(update.scrollRect.isEmpty());
117 greg.scrollRect(delta.x(), delta.y(), rect);
124 EXPECT_FALSE(update.scrollRect.isEmpty());
126 EXPECT_EQ(rect, update.scrollRect);
143 greg.scrollRect(delta1.x(), delta1.y(), rect);
144 greg.scrollRect(delta2.x(), delta2.y(), rect);
151 EXPECT_FALSE(update.scrollRect.isEmpty());
153 EXPECT_EQ(rect, update.scrollRect);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/painting/
PaintAggregator.cpp 135 damagedRect.setY(scrollRect.y());
136 damagedRect.setHeight(scrollRect.height());
138 damagedRect.setX(scrollRect.x());
141 damagedRect.setX(scrollRect.maxX() + dx);
146 damagedRect.setX(scrollRect.x());
147 damagedRect.setWidth(scrollRect.width());
149 damagedRect.setY(scrollRect.y());
152 damagedRect.setY(scrollRect.maxY() + dy);
158 return intersection(scrollRect, damagedRect);
171 return !m_update.scrollRect.isEmpty() || !m_update.paintRects.isEmpty()
    [all...]
PaintAggregator.h 44 // This structure describes an aggregation of invalidateRect and scrollRect
45 // calls. If |scrollRect| is non-empty, then that rect should be scrolled
47 // then those rects should be repainted. If |scrollRect| and |paintRects|
55 // Returns the rect damaged by scrolling within |scrollRect| by
63 WebCore::IntRect scrollRect;
67 // There is a PendingUpdate if invalidateRect or scrollRect were called and
79 void scrollRect(int dx, int dy, const WebCore::IntRect& clipRect);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayerDetailsView.js 118 * @param {!LayerTreeAgent.ScrollRect} scrollRect
121 _createScrollRectElement: function(scrollRect, index)
127 element.textContent = WebInspector.LayerTreeModel.ScrollRectType[scrollRect.type].description + " (" + scrollRect.rect.x + ", " + scrollRect.rect.y +
128 ", " + scrollRect.rect.width + ", " + scrollRect.rect.height + ")";
  /external/chromium_org/third_party/skia/src/core/
SkBitmap_scroll.cpp 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy,
23 tmp.scrollRect(NULL, dx, dy, inval);
  /external/skia/src/core/
SkBitmap_scroll.cpp 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy,
23 tmp.scrollRect(NULL, dx, dy, inval);
  /external/chromium_org/third_party/WebKit/public/web/
WebPluginContainer.h 62 virtual void scrollRect(int dx, int dy, const WebRect&) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.cpp 397 IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + scrollbarLeft(),
401 m_vBar->setFrameRect(scrollRect);
774 IntRect scrollRect = rect;
776 scrollRect.move(borderLeft(), borderTop());
778 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
781 m_verticalBarDamage = scrollRect;
784 invalidatePaintRectangle(scrollRect);
    [all...]
RenderLayerScrollableArea.cpp 185 IntRect scrollRect = rect;
191 scrollRect.move(verticalScrollbarStart(0, box().width()), box().borderTop());
193 scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
195 if (scrollRect.isEmpty())
198 LayoutRect repaintRect = scrollRect;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.h 104 virtual void scrollRect(int dx, int dy, const WebRect&) OVERRIDE;
WebPopupMenuImpl.h 124 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
WebPagePopupImpl.cpp 100 virtual void scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) OVERRIDE
102 m_popup->widgetClient()->didScrollRect(scrollDelta.width(), scrollDelta.height(), intersection(scrollRect, clipRect));
WebPopupMenuImpl.cpp 391 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect)
ChromeClientImpl.cpp 497 const IntSize& scrollDelta, const IntRect& scrollRect,
504 m_webView->client()->didScrollRect(dx, dy, intersection(scrollRect, clipRect));
WebPluginContainerImpl.cpp 387 void WebPluginContainerImpl::scrollRect(int dx, int dy, const WebRect& rect)
  /external/chromium_org/third_party/skia/gm/
bitmapscroll.cpp 12 /** Create a bitmap image suitable for testing SkBitmap::scrollRect().
133 // scrollRect() should always return true, even if it's a no-op
138 SkDEBUGCODE(bool scrollRectReturnValue = )scrolledBitmap.scrollRect(
  /external/skia/gm/
bitmapscroll.cpp 12 /** Create a bitmap image suitable for testing SkBitmap::scrollRect().
133 // scrollRect() should always return true, even if it's a no-op
138 SkDEBUGCODE(bool scrollRectReturnValue = )scrolledBitmap.scrollRect(
  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 562 bool scrollRect(const SkIRect* subset, int dx, int dy,
    [all...]
  /external/skia/include/core/
SkBitmap.h 562 bool scrollRect(const SkIRect* subset, int dx, int dy,
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_plugin_instance_impl.cc 748 void PepperPluginInstanceImpl::ScrollRect(int dx,
756 fullscreen_container_->ScrollRect(dx, dy, rect);
759 container_->scrollRect(dx, dy, rect);
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleApp.cpp     [all...]
  /external/skia/samplecode/
SampleApp.cpp     [all...]

Completed in 594 milliseconds