/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 | 731 ScrollableArea* scrollableArea; 732 for (scrollableArea = 0; 733 scrollParent && !(scrollableArea = scrollParent->getScrollableAreaIfScrollable()); 735 if (!scrollableArea) 739 IntPoint scrollPosition = scrollableArea->scrollPosition(); 740 IntRect scrollVisibleRect = scrollableArea->visibleContentRect(); 781 ScrollableArea* scrollableArea = outer->getScrollableAreaIfScrollable(); 785 IntPoint scrollPosition = scrollableArea->scrollPosition() [all...] |
AXRenderObject.cpp | 248 ScrollableArea* AXRenderObject::getScrollableAreaIfScrollable() const 261 return box->scrollableArea(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
ScrollingCoordinator.cpp | 77 WebLayer* ScrollingCoordinator::scrollingWebLayerForScrollableArea(ScrollableArea* scrollableArea) 79 GraphicsLayer* graphicsLayer = scrollLayerForScrollableArea(scrollableArea); 213 void ScrollingCoordinator::willDestroyScrollableArea(ScrollableArea* scrollableArea) 215 removeWebScrollbarLayer(scrollableArea, HorizontalScrollbar); 216 removeWebScrollbarLayer(scrollableArea, VerticalScrollbar); 219 void ScrollingCoordinator::removeWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation) 222 if (OwnPtr<WebScrollbarLayer> scrollbarLayer = scrollbars.take(scrollableArea)) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderMarquee.cpp | 167 layer()->scrollableArea()->scrollToOffset(IntSize(m_start, 0)); 169 layer()->scrollableArea()->scrollToOffset(IntSize(0, m_start)); 278 layer()->scrollableArea()->scrollToXOffset(m_start); 280 layer()->scrollableArea()->scrollToYOffset(m_start); 303 int currentPos = (isHorizontal() ? layer()->scrollableArea()->scrollXOffset() : layer()->scrollableArea()->scrollYOffset()); 320 layer()->scrollableArea()->scrollToXOffset(newPos); 322 layer()->scrollableArea()->scrollToYOffset(newPos);
|
RenderLayerModelObject.h | 33 class ScrollableArea; 45 ScrollableArea* scrollableArea() const;
|
CompositedLayerMapping.h | 216 bool requiresHorizontalScrollbarLayer() const { return m_owningLayer->scrollableArea() && m_owningLayer->scrollableArea()->horizontalScrollbar(); } 217 bool requiresVerticalScrollbarLayer() const { return m_owningLayer->scrollableArea() && m_owningLayer->scrollableArea()->verticalScrollbar(); } 218 bool requiresScrollCornerLayer() const { return m_owningLayer->scrollableArea() && !m_owningLayer->scrollableArea()->scrollCornerAndResizerRect().isEmpty(); }
|
RenderLayerModelObject.cpp | 69 ScrollableArea* RenderLayerModelObject::scrollableArea() const 71 return m_layer ? m_layer->scrollableArea() : 0;
|
RenderScrollbar.cpp | 38 PassRefPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, Frame* owningFrame) 40 return adoptRef(new RenderScrollbar(scrollableArea, orientation, ownerNode, owningFrame)); 43 RenderScrollbar::RenderScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, Frame* owningFrame) 44 : Scrollbar(scrollableArea, orientation, RegularScrollbar, RenderScrollbarTheme::renderScrollbarTheme())
|
CompositedLayerMapping.cpp | [all...] |
RenderBox.cpp | 254 if (int left = layer()->scrollableArea()->scrollXOffset()) { 256 layer()->scrollableArea()->scrollToXOffset(left); 258 if (int top = layer()->scrollableArea()->scrollYOffset()) { 260 layer()->scrollableArea()->scrollToYOffset(top); 465 return layer()->scrollableArea()->scrollWidth(); 476 return layer()->scrollableArea()->scrollHeight(); 484 return hasOverflowClip() ? layer()->scrollableArea()->scrollXOffset() : 0; 489 return hasOverflowClip() ? layer()->scrollableArea()->scrollYOffset() : 0; 495 layer()->scrollableArea()->scrollToXOffset(newLeft, ScrollOffsetClamped); 501 layer()->scrollableArea()->scrollToYOffset(newTop, ScrollOffsetClamped) [all...] |
RenderMenuList.cpp | 519 PassRefPtr<Scrollbar> RenderMenuList::createScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize) 524 widget = RenderScrollbar::createCustomScrollbar(scrollableArea, orientation, this->node()); 526 widget = Scrollbar::create(scrollableArea, orientation, controlSize);
|
/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)); 367 ScrollAnimatorNone::ScrollAnimatorNone(ScrollableArea* scrollableArea) 368 : 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 | 314 ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea()); 354 ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea()); 369 ASSERT_TRUE(box->scrollableArea()->usesCompositedScrolling()); 377 ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea()); 415 ASSERT_EQ(innerFrameView, scrollLayer->scrollableArea()); 459 ASSERT_EQ(innerFrameView, scrollLayer->scrollableArea());
|
GraphicsLayerTest.cpp | 29 #include "platform/scroll/ScrollableArea.h" 120 class FakeScrollableArea : public ScrollableArea { 130 virtual ScrollableArea* enclosingScrollableArea() const OVERRIDE { return 0; } 152 FakeScrollableArea scrollableArea; 153 m_graphicsLayer->setScrollableArea(&scrollableArea, false); 159 EXPECT_EQ(scrollPosition, WebPoint(scrollableArea.scrollPosition()));
|
ScrollAnimatorNoneTest.cpp | 38 #include "platform/scroll/ScrollableArea.h" 47 class MockScrollableArea : public ScrollableArea { 61 MOCK_CONST_METHOD0(enclosingScrollableArea, ScrollableArea*()); 86 MockScrollAnimatorNone(ScrollableArea* scrollableArea) 87 : ScrollAnimatorNone(scrollableArea) { } 117 MockScrollableArea scrollableArea(true); 118 MockScrollAnimatorNone scrollAnimatorNone(&scrollableArea); 120 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000)); 121 EXPECT_CALL(scrollableArea, minimumScrollPosition()).Times(AtLeast(1)).WillRepeatedly(Return(IntPoint())) [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
LinkHighlight.cpp | 133 if (renderLayer->scrollableArea() && renderLayer->scrollableArea()->usesCompositedScrolling()) {
|
AutofillPopupMenuClient.cpp | 236 ScrollableArea* scrollableArea, 240 return Scrollbar::create(scrollableArea, orientation, size);
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
FocusController.cpp | 682 static void contentAreaDidShowOrHide(ScrollableArea* scrollableArea, bool didShow) 685 scrollableArea->contentAreaDidShow(); 687 scrollableArea->contentAreaDidHide(); 708 const HashSet<ScrollableArea*>* scrollableAreas = frameView->scrollableAreas(); 712 for (HashSet<ScrollableArea*>::const_iterator it = scrollableAreas->begin(), end = scrollableAreas->end(); it != end; ++it) { 713 ScrollableArea* scrollableArea = *it; 714 ASSERT(scrollableArea->scrollbarsCanBeActive()); 716 contentAreaDidShowOrHide(scrollableArea, containingWindowIsVisible) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
FrameView.cpp | 203 ScrollableArea::setVerticalScrollElasticity(ScrollElasticityAllowed); 204 ScrollableArea::setHorizontalScrollElasticity(ScrollElasticityAllowed); [all...] |