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

  /external/chromium_org/third_party/WebKit/Source/web/tests/
PaintAggregatorTest.cpp 57 EXPECT_TRUE(update.scrollRect.isEmpty());
79 EXPECT_TRUE(update.scrollRect.isEmpty());
104 EXPECT_TRUE(update.scrollRect.isEmpty());
116 greg.scrollRect(delta.x(), delta.y(), rect);
123 EXPECT_FALSE(update.scrollRect.isEmpty());
125 EXPECT_EQ(rect, update.scrollRect);
142 greg.scrollRect(delta1.x(), delta1.y(), rect);
143 greg.scrollRect(delta2.x(), delta2.y(), rect);
150 EXPECT_FALSE(update.scrollRect.isEmpty());
152 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 blink::IntRect scrollRect;
67 // There is a PendingUpdate if invalidateRect or scrollRect were called and
79 void scrollRect(int dx, int dy, const blink::IntRect& clipRect);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayerDetailsView.js 119 * @param {!LayerTreeAgent.ScrollRect} scrollRect
122 _createScrollRectElement: function(scrollRect, index)
128 element.textContent = WebInspector.LayerTreeModel.ScrollRectType[scrollRect.type].description + " (" + scrollRect.rect.x + ", " + scrollRect.rect.y +
129 ", " + 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 64 virtual void scrollRect(const WebRect&) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.h 108 virtual void scrollRect(const WebRect&) OVERRIDE;
WebPluginContainerImpl.cpp 390 void WebPluginContainerImpl::scrollRect(const WebRect& rect)
  /external/chromium_org/third_party/skia/gm/
bitmapscroll.cpp 12 /** Create a bitmap image suitable for testing SkBitmap::scrollRect().
134 // scrollRect() should always return true, even if it's a no-op
139 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/WebKit/Source/core/rendering/
RenderLayerScrollableArea.cpp 198 IntRect scrollRect = rect;
204 scrollRect.move(verticalScrollbarStart(0, box().width()), box().borderTop());
206 scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
208 if (scrollRect.isEmpty())
211 LayoutRect paintInvalidationRect = scrollRect;
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 525 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/skia/samplecode/
SampleApp.cpp     [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_plugin_instance_impl.cc 779 void PepperPluginInstanceImpl::ScrollRect(int dx,
787 fullscreen_container_->ScrollRect(dx, dy, rect);
790 container_->scrollRect(rect);
    [all...]

Completed in 216 milliseconds