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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 233 void ScrollingCoordinator::willDestroyScrollableArea(ScrollableArea* scrollableArea)
235 removeWebScrollbarLayer(scrollableArea, HorizontalScrollbar);
236 removeWebScrollbarLayer(scrollableArea, VerticalScrollbar);
239 void ScrollingCoordinator::removeWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
242 if (OwnPtr<WebScrollbarLayer> scrollbarLayer = scrollbars.take(scrollableArea))
288 WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer)
291 return scrollbars.add(scrollableArea, scrollbarLayer).storedValue->value.get()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXScrollbar.cpp 102 if (!m_scrollbar->scrollableArea())
106 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
AXObject.cpp 723 ScrollableArea* scrollableArea;
724 for (scrollableArea = 0;
725 scrollParent && !(scrollableArea = scrollParent->getScrollableAreaIfScrollable());
727 if (!scrollableArea)
731 IntPoint scrollPosition = scrollableArea->scrollPosition();
732 IntRect scrollVisibleRect = scrollableArea->visibleContentRect();
773 ScrollableArea* scrollableArea = outer->getScrollableAreaIfScrollable();
777 IntPoint scrollPosition = scrollableArea->scrollPosition()
    [all...]
AXRenderObject.cpp 238 ScrollableArea* AXRenderObject::getScrollableAreaIfScrollable() const
251 return box->scrollableArea();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMarquee.cpp 168 layer()->scrollableArea()->scrollToOffset(IntSize(m_start, 0));
170 layer()->scrollableArea()->scrollToOffset(IntSize(0, m_start));
282 layer()->scrollableArea()->scrollToXOffset(m_start);
284 layer()->scrollableArea()->scrollToYOffset(m_start);
307 int currentPos = (isHorizontal() ? layer()->scrollableArea()->scrollXOffset() : layer()->scrollableArea()->scrollYOffset());
324 layer()->scrollableArea()->scrollToXOffset(newPos);
326 layer()->scrollableArea()->scrollToYOffset(newPos);
RenderLayerModelObject.h 33 class ScrollableArea;
54 ScrollableArea* scrollableArea() const;
RenderLayerModelObject.cpp 69 ScrollableArea* RenderLayerModelObject::scrollableArea() const
71 return m_layer ? m_layer->scrollableArea() : 0;
RenderScrollbar.cpp 39 PassRefPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, LocalFrame* owningFrame)
41 return adoptRef(new RenderScrollbar(scrollableArea, orientation, ownerNode, owningFrame));
44 RenderScrollbar::RenderScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, LocalFrame* owningFrame)
45 : Scrollbar(scrollableArea, orientation, RegularScrollbar, RenderScrollbarTheme::renderScrollbarTheme())
RenderBox.cpp 205 if (int left = layer()->scrollableArea()->scrollXOffset()) {
207 layer()->scrollableArea()->scrollToXOffset(left);
209 if (int top = layer()->scrollableArea()->scrollYOffset()) {
211 layer()->scrollableArea()->scrollToYOffset(top);
369 return layer()->scrollableArea()->scrollWidth();
380 return layer()->scrollableArea()->scrollHeight();
388 return hasOverflowClip() ? layer()->scrollableArea()->scrollXOffset() : 0;
393 return hasOverflowClip() ? layer()->scrollableArea()->scrollYOffset() : 0;
404 return layer()->scrollableArea()->scrollHeight();
417 layer()->scrollableArea()->scrollToXOffset(newLeft, ScrollOffsetClamped)
    [all...]
RenderTreeAsText.cpp 537 if (l.scrollableArea()->scrollXOffset())
538 ts << " scrollX " << l.scrollableArea()->scrollXOffset();
539 if (l.scrollableArea()->scrollYOffset())
540 ts << " scrollY " << l.scrollableArea()->scrollYOffset();
RenderWidget.cpp 240 layer()->scrollableArea()->paintResizer(paintInfo.context, roundedIntPoint(adjustedPaintOffset), paintInfo.rect);
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimatorNone.cpp 36 #include "platform/scroll/ScrollableArea.h"
50 PassOwnPtr<ScrollAnimator> ScrollAnimator::create(ScrollableArea* scrollableArea)
52 if (scrollableArea && scrollableArea->scrollAnimatorEnabled())
53 return adoptPtr(new ScrollAnimatorNone(scrollableArea));
54 return adoptPtr(new ScrollAnimator(scrollableArea));
368 ScrollAnimatorNone::ScrollAnimatorNone(ScrollableArea* scrollableArea)
369 : ScrollAnimator(scrollableArea)
    [all...]
ScrollAnimator.h 45 class ScrollableArea;
51 static PassOwnPtr<ScrollAnimator> create(ScrollableArea*);
63 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
105 explicit ScrollAnimator(ScrollableArea*);
109 ScrollableArea* m_scrollableArea;
ScrollAnimator.cpp 35 #include "platform/scroll/ScrollableArea.h"
43 ScrollAnimator::ScrollAnimator(ScrollableArea* scrollableArea)
44 : m_scrollableArea(scrollableArea)
Scrollbar.cpp 35 #include "platform/scroll/ScrollableArea.h"
48 PassRefPtr<Scrollbar> Scrollbar::create(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size)
50 return adoptRef(new Scrollbar(scrollableArea, orientation, size));
53 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme)
54 : m_scrollableArea(scrollableArea)
Scrollbar.h 42 class ScrollableArea;
50 static PassRefPtr<Scrollbar> create(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize);
101 // Called by the ScrollableArea when the scroll offset changes.
105 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
154 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0);
167 ScrollableArea* m_scrollableArea;
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 37 #include "platform/scroll/ScrollableArea.h"
187 ScrollableArea* _scrollableArea;
189 - (id)initWithScrollableArea:(ScrollableArea*)scrollableArea;
194 - (id)initWithScrollableArea:(ScrollableArea*)scrollableArea
200 _scrollableArea = scrollableArea;
421 return static_cast<ScrollAnimatorMac*>(_scrollbar->scrollableArea()->scrollAnimator());
441 return _scrollbar->convertFromContainingView(_scrollbar->scrollableArea()->lastKnownMousePosition());
453 if (_scrollbar->scrollableArea()->shouldSuspendScrollAnimations() && !mustAnimate)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 297 ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea());
337 ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea());
352 ASSERT_TRUE(box->scrollableArea()->usesCompositedScrolling());
360 ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea());
398 ASSERT_EQ(innerFrameView, scrollLayer->scrollableArea());
442 ASSERT_EQ(innerFrameView, scrollLayer->scrollableArea());
ScrollAnimatorNoneTest.cpp 36 #include "platform/scroll/ScrollableArea.h"
46 class MockScrollableArea : public ScrollableArea {
60 MOCK_CONST_METHOD0(enclosingScrollableArea, ScrollableArea*());
83 MockScrollAnimatorNone(ScrollableArea* scrollableArea)
84 : ScrollAnimatorNone(scrollableArea) { }
114 MockScrollableArea scrollableArea(true);
115 MockScrollAnimatorNone scrollAnimatorNone(&scrollableArea);
117 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000));
118 EXPECT_CALL(scrollableArea, minimumScrollPosition()).Times(AtLeast(1)).WillRepeatedly(Return(IntPoint()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayerTest.cpp 29 #include "platform/scroll/ScrollableArea.h"
127 class FakeScrollableArea : public ScrollableArea {
158 FakeScrollableArea scrollableArea;
159 m_graphicsLayer->setScrollableArea(&scrollableArea, false);
165 EXPECT_EQ(scrollPosition, WebPoint(scrollableArea.scrollPosition()));
GraphicsLayer.h 65 class ScrollableArea;
245 void setScrollableArea(ScrollableArea*, bool isMainFrame);
246 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
364 ScrollableArea* m_scrollableArea;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositedLayerMapping.h 258 bool requiresHorizontalScrollbarLayer() const { return m_owningLayer.scrollableArea() && m_owningLayer.scrollableArea()->horizontalScrollbar(); }
259 bool requiresVerticalScrollbarLayer() const { return m_owningLayer.scrollableArea() && m_owningLayer.scrollableArea()->verticalScrollbar(); }
260 bool requiresScrollCornerLayer() const { return m_owningLayer.scrollableArea() && !m_owningLayer.scrollableArea()->scrollCornerAndResizerRect().isEmpty(); }
GraphicsLayerUpdater.cpp 96 layer.scrollableArea()->positionOverflowControls(IntSize());
CompositedLayerMapping.cpp 660 if (m_owningLayer.scrollableArea() && m_owningLayer.scrollableArea()->scrollsOverflow())
661 m_owningLayer.scrollableArea()->positionOverflowControls(IntSize());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
LinkHighlight.cpp 131 if (renderLayer->scrollableArea() && renderLayer->scrollableArea()->usesCompositedScrolling()) {

Completed in 1213 milliseconds

1 2