HomeSort by relevance Sort by last modified time
    Searched refs:ScrollableArea (Results 26 - 44 of 44) sorted by null

12

  /external/webkit/Source/WebCore/rendering/
RenderTextControlSingleLine.h 143 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize);
RenderScrollbar.cpp 37 PassRefPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, RenderBox* renderer, Frame* owningFrame)
39 return adoptRef(new RenderScrollbar(scrollableArea, orientation, renderer, owningFrame));
42 RenderScrollbar::RenderScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, RenderBox* renderer, Frame* owningFrame)
43 : Scrollbar(scrollableArea, orientation, RegularScrollbar, RenderScrollbarTheme::renderScrollbarTheme())
RenderListBox.cpp 566 ScrollableArea::scrollToYOffsetWithoutAnimation(newOffset);
578 return ScrollableArea::scroll(direction, granularity, multiplier);
583 return ScrollableArea::scroll(logicalToPhysical(direction, style()->isHorizontalWritingMode(), style()->isFlippedBlocksWritingMode()), granularity, multiplier);
663 ScrollableArea::scrollToYOffsetWithoutAnimation(index);
818 ScrollableArea::willRemoveVerticalScrollbar(m_vBar.get());
RenderLayer.h 50 #include "ScrollableArea.h"
157 class RenderLayer : public ScrollableArea {
260 // ScrollableArea overrides
555 // ScrollableArea interface
579 // NOTE: This should only be called by the overriden setScrollOffset from ScrollableArea.
    [all...]
RenderMenuList.cpp 469 PassRefPtr<Scrollbar> RenderMenuList::createScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize)
474 widget = RenderScrollbar::createCustomScrollbar(scrollableArea, orientation, this);
476 widget = Scrollbar::createNativeScrollbar(scrollableArea, orientation, controlSize);
RenderTextControlSingleLine.cpp     [all...]
RenderLayer.cpp 196 ScrollableArea::setConstrainsScrollingToContentEdge(false);
    [all...]
  /external/webkit/Source/WebCore/page/
FocusController.cpp 422 if (const HashSet<ScrollableArea*>* scrollableAreas = m_page->scrollableAreaSet()) {
423 HashSet<ScrollableArea*>::const_iterator end = scrollableAreas->end();
424 for (HashSet<ScrollableArea*>::const_iterator it = scrollableAreas->begin(); it != end; ++it) {
Page.cpp 926 void Page::addScrollableArea(ScrollableArea* scrollableArea)
930 m_scrollableAreaSet->add(scrollableArea);
933 void Page::removeScrollableArea(ScrollableArea* scrollableArea)
937 m_scrollableAreaSet->remove(scrollableArea);
940 bool Page::containsScrollableArea(ScrollableArea* scrollableArea) const
944 return m_scrollableAreaSet->contains(scrollableArea);
FrameView.cpp 152 ScrollableArea::setVerticalScrollElasticity(ScrollElasticityAllowed);
153 ScrollableArea::setHorizontalScrollElasticity(ScrollElasticityAllowed);
    [all...]
  /external/webkit/Source/WebCore/platform/
Scrollbar.cpp 36 #include "ScrollableArea.h"
52 PassRefPtr<Scrollbar> Scrollbar::createNativeScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size)
54 return adoptRef(new Scrollbar(scrollableArea, orientation, size));
64 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize,
66 : m_scrollableArea(scrollableArea)
ScrollView.cpp 468 return ScrollableArea::scroll(direction, granularity);
648 ScrollableArea::scrollToOffsetWithoutAnimation(FloatPoint(scroll.width() + m_scrollOrigin.x(), scroll.height() + m_scrollOrigin.y()));
854 ScrollableArea::handleWheelEvent(e);
863 ScrollableArea::handleGestureEvent(gestureEvent);
    [all...]
ScrollView.h 32 #include "ScrollableArea.h"
60 class ScrollView : public Widget, public ScrollableArea {
64 // ScrollableArea functions. FrameView overrides the others.
72 // NOTE: This should only be called by the overriden setScrollOffset from ScrollableArea.
  /external/webkit/Source/WebKit/chromium/tests/
PopupMenuTest.cpp 99 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize) { return 0; }
  /external/webkit/Source/WebKit/chromium/src/
AutoFillPopupMenuClient.cpp 257 ScrollableArea* scrollableArea,
261 return Scrollbar::createNativeScrollbar(scrollableArea, orientation, size);
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 534 ScrollableArea::scrollToYOffsetWithoutAnimation(index);
539 ScrollableArea::scrollToYOffsetWithoutAnimation(index - visibleItems() + 1);
996 ScrollableArea::scroll(i > 0 ? ScrollUp : ScrollDown, ScrollByLine, abs(i));
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 745 ScrollableArea::scroll(i > 0 ? ScrollUp : ScrollDown, ScrollByLine, abs(i));
949 ScrollableArea::scrollToYOffsetWithoutAnimation(index);
954 ScrollableArea::scrollToYOffsetWithoutAnimation(index - visibleItems() + 1);
  /external/webkit/Source/WebCore/platform/mac/
ScrollAnimatorMac.mm 37 #include "ScrollableArea.h"
181 WebCore::IntSize contentsSize = _animator->scrollableArea()->contentsSize();
191 return _animator->scrollableArea()->inLiveResize();
200 return _animator->scrollableArea()->currentMousePosition();
211 scrollbar = _animator->scrollableArea()->horizontalScrollbar();
213 scrollbar = _animator->scrollableArea()->verticalScrollbar();
242 WebCore::Scrollbar* verticalScrollbar = _animator->scrollableArea()->verticalScrollbar();
259 WebCore::Scrollbar* horizontalScrollbar = _animator->scrollableArea()->horizontalScrollbar();
277 _animator->scrollableArea()->scrollbarStyleChanged();
329 if (WebCore::Scrollbar* verticalScrollbar = _animator->scrollableArea()->verticalScrollbar()
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 563 platform/ScrollableArea.cpp \
    [all...]

Completed in 1797 milliseconds

12