/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollableArea.cpp | 107 orientation = VerticalScrollbar; 164 Scrollbar* verticalScrollbar = this->verticalScrollbar(); 170 if (!verticalScrollbar) 173 // If there is both a horizontalScrollbar and a verticalScrollbar, 176 boundsAndCorner.setWidth(boundsAndCorner.width() + verticalScrollbar->width()); 181 if (verticalScrollbar) { 182 verticalScrollbar->offsetDidChange(); 183 if (verticalScrollbar->isOverlayScrollbar() && !hasLayerForVerticalScrollbar()) 184 verticalScrollbar->invalidate() [all...] |
FramelessScrollView.cpp | 89 if (shouldPlaceVerticalScrollbarOnLeft() && verticalScrollbar()) 90 clipRect.move(verticalScrollbar()->width(), 0);
|
ScrollAnimator.cpp | 79 bool canScrollY = m_scrollableArea->userInputScrollable(VerticalScrollbar); 105 deltaY = m_scrollableArea->pageStep(VerticalScrollbar); 110 scroll(VerticalScrollbar, granularity, m_scrollableArea->pixelStep(VerticalScrollbar), -deltaY);
|
ScrollView.cpp | 91 m_verticalScrollbar = createScrollbar(VerticalScrollbar); 93 didAddScrollbar(m_verticalScrollbar.get(), VerticalScrollbar); 96 willRemoveScrollbar(m_verticalScrollbar.get(), VerticalScrollbar); 138 layer->setUserScrollable(userInputScrollable(HorizontalScrollbar), userInputScrollable(VerticalScrollbar)); 197 if (Scrollbar* verticalBar = verticalScrollbar()) 513 IntRect scrollViewRect = convertToRootView(IntRect((shouldPlaceVerticalScrollbarOnLeft() && verticalScrollbar()) ? verticalScrollbar()->width() : 0, 0, visibleWidth(), visibleHeight())); 515 int verticalScrollbarWidth = (verticalScrollbar() && !hasLayerForVerticalScrollbar()) ? verticalScrollbar()->width() : 0; 770 positionScrollbarLayer(layerForVerticalScrollbar(), verticalScrollbar()); [all...] |
ScrollTypes.h | 121 enum ScrollbarOrientation { HorizontalScrollbar, VerticalScrollbar };
|
ScrollbarThemeGtkOrAura.cpp | 150 if (scrollbar->orientation() == VerticalScrollbar) { 162 if (scrollbar->orientation() == VerticalScrollbar) {
|
ScrollbarThemeMacCommon.mm | 105 if (scrollbar->orientation() != VerticalScrollbar) 272 if (scrollbar->orientation() != VerticalScrollbar)
|
ScrollbarThemeNonMacCommon.cpp | 97 if (scrollbar->orientation() != VerticalScrollbar)
|
ScrollView.h | 76 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_verticalScrollbar.get(); } 77 bool isScrollViewScrollbar(const Widget* child) const { return horizontalScrollbar() == child || verticalScrollbar() == child; }
|
ScrollableArea.h | 133 virtual Scrollbar* verticalScrollbar() const { return 0; }
|
/external/chromium_org/third_party/WebKit/Source/web/ |
ScrollbarGroup.cpp | 63 didAddScrollbar(scrollbar->scrollbar(), VerticalScrollbar); 79 willRemoveScrollbar(scrollbar->scrollbar(), VerticalScrollbar); 170 Scrollbar* ScrollbarGroup::verticalScrollbar() const 265 return orientation == HorizontalScrollbar ? horizontalScrollbar() : verticalScrollbar(); 276 if (orientation == VerticalScrollbar) {
|
ScrollbarGroup.h | 63 virtual WebCore::Scrollbar* verticalScrollbar() const OVERRIDE;
|
PopupListBox.cpp | 367 int tx = x() - scrollX() + ((shouldPlaceVerticalScrollbarOnLeft() && verticalScrollbar()) ? verticalScrollbar()->width() : 0); 680 if (shouldPlaceVerticalScrollbarOnLeft() && verticalScrollbar()) 681 clipRect.move(verticalScrollbar()->width(), 0);
|
PinchViewports.cpp | 150 WebCore::ScrollbarOrientation webcoreOrientation = isHorizontal ? WebCore::HorizontalScrollbar : WebCore::VerticalScrollbar;
|
WebPluginContainerImpl.cpp | 110 if (m_scrollbarGroup->verticalScrollbar()) 111 m_scrollbarGroup->verticalScrollbar()->invalidate();
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
eventhistory.cpp | 115 if (eventListView->verticalScrollBar()->value() < 116 eventListView->verticalScrollBar()->maximum())
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayerScrollableArea.cpp | 133 destroyScrollbar(VerticalScrollbar); 228 static IntRect cornerRect(const RenderStyle* style, const Scrollbar* horizontalScrollbar, const Scrollbar* verticalScrollbar, const IntRect& bounds) 232 if (!verticalScrollbar && !horizontalScrollbar) { 237 } else if (verticalScrollbar && !horizontalScrollbar) { 238 horizontalThickness = verticalScrollbar->width(); 240 } else if (horizontalScrollbar && !verticalScrollbar) { 244 horizontalThickness = verticalScrollbar->width(); 260 bool hasVerticalBar = verticalScrollbar(); 263 return cornerRect(m_box->style(), horizontalScrollbar(), verticalScrollbar(), m_box->pixelSnappedBorderBoxRect()); 413 verticalScrollbarWidth = (verticalScrollbar() && !verticalScrollbar()->isOverlayScrollbar()) ? verticalScrollbar()->width() : 0 [all...] |
RenderListBox.cpp | 176 scrollToOffsetWithoutAnimation(VerticalScrollbar, 0); 608 scrollToOffsetWithoutAnimation(VerticalScrollbar, newOffset); 632 return orientation == VerticalScrollbar ? (numItems() - numVisibleItems()) : 0; 699 scrollToOffsetWithoutAnimation(VerticalScrollbar, index); 856 return orientation == VerticalScrollbar; 895 widget = RenderScrollbar::createCustomScrollbar(this, VerticalScrollbar, this->node()); 897 widget = Scrollbar::create(this, VerticalScrollbar, RenderTheme::theme().scrollbarControlSizeForPart(ListboxPart)); 898 didAddScrollbar(widget.get(), VerticalScrollbar); 910 ScrollableArea::willRemoveScrollbar(m_vBar.get(), VerticalScrollbar);
|
RenderLayerScrollableArea.h | 75 bool hasVerticalScrollbar() const { return verticalScrollbar(); } 78 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_vBar.get(); }
|
RenderListBox.h | 117 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_vBar.get(); }
|
RenderLayerCompositor.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXScrollView.cpp | 109 if (m_scrollView->verticalScrollbar() && !m_verticalScrollbar) { 110 m_verticalScrollbar = addChildScrollbar(m_scrollView->verticalScrollbar()); 111 } else if (!m_scrollView->verticalScrollbar() && m_verticalScrollbar) {
|
AXScrollbar.cpp | 76 if (m_scrollbar->orientation() == VerticalScrollbar)
|
/external/chromium_org/third_party/WebKit/Source/platform/mac/ |
ScrollAnimatorMac.mm | 244 scrollbar = _scrollableArea->verticalScrollbar(); 467 if (part == WebCore::ThumbPart && _scrollbar->orientation() == VerticalScrollbar) { [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
ScrollingCoordinator.cpp | 216 removeWebScrollbarLayer(scrollableArea, VerticalScrollbar); 301 Scrollbar* scrollbar = orientation == HorizontalScrollbar ? scrollableArea->horizontalScrollbar() : scrollableArea->verticalScrollbar(); 345 webLayer->setMaxScrollPosition(IntSize(scrollableArea->scrollSize(HorizontalScrollbar), scrollableArea->scrollSize(VerticalScrollbar))); 347 bool canScrollY = scrollableArea->userInputScrollable(VerticalScrollbar); 355 if (WebScrollbarLayer* scrollbarLayer = getWebScrollbarLayer(scrollableArea, VerticalScrollbar)) { [all...] |