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

  /external/webkit/Source/WebCore/accessibility/
AccessibilityScrollbar.cpp 40 : m_scrollbar(scrollbar)
53 if (!m_scrollbar)
56 return m_scrollbar->frameRect();
69 if (!m_scrollbar)
72 if (m_scrollbar->orientation() == HorizontalScrollbar)
74 if (m_scrollbar->orientation() == VerticalScrollbar)
82 if (!m_scrollbar)
84 return m_scrollbar->enabled();
89 if (!m_scrollbar)
92 return m_scrollbar->currentPos() / m_scrollbar->maximum()
    [all...]
AccessibilityScrollbar.h 42 Scrollbar* scrollbar() const { return m_scrollbar.get(); }
65 RefPtr<Scrollbar> m_scrollbar; member in class:WebCore::AccessibilityScrollbar
  /external/webkit/Source/WebKit/chromium/src/
WebScrollbarImpl.cpp 67 m_scrollbar = Scrollbar::createNativeScrollbar(
79 IntRect oldRect = m_scrollbar->frameRect();
80 m_scrollbar->setFrameRect(rect);
82 m_scrollbar->invalidate();
84 int length = m_scrollbar->orientation() == HorizontalScrollbar ? m_scrollbar->width() : m_scrollbar->height();
86 m_scrollbar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep);
87 m_scrollbar->setEnabled(m_scrollbar->totalSize() > length)
    [all...]
WebScrollbarImpl.h 84 RefPtr<WebCore::Scrollbar> m_scrollbar; member in class:WebKit::WebScrollbarImpl
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarPart.cpp 40 , m_scrollbar(scrollbar)
52 if (m_scrollbar->orientation() == HorizontalScrollbar)
63 setWidth(m_scrollbar->width());
67 setHeight(m_scrollbar->height());
75 setHeight(m_scrollbar->height());
77 setWidth(m_scrollbar->width());
91 if (!m_scrollbar->owningRenderer())
93 int visibleSize = m_scrollbar->owningRenderer()->width() - m_scrollbar->owningRenderer()->borderLeft() - m_scrollbar->owningRenderer()->borderRight()
    [all...]
RenderScrollbarPart.h 62 RenderScrollbar* m_scrollbar; member in class:WebCore::RenderScrollbarPart
HitTestResult.h 63 Scrollbar* scrollbar() const { return m_scrollbar.get(); }
138 RefPtr<Scrollbar> m_scrollbar; member in class:WebCore::HitTestResult
HitTestResult.cpp 96 , m_scrollbar(other.scrollbar())
123 m_scrollbar = other.scrollbar();
168 m_scrollbar = s;
605 m_scrollbar = other.scrollbar();
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.h 57 Scrollbar* scrollbar() const { return m_scrollbar.get(); }
102 virtual Scrollbar* verticalScrollbar() const { return m_scrollbar.get(); }
115 RefPtr<Scrollbar> m_scrollbar; member in class:WebCore::PopupMenuWin
PopupMenuWin.cpp 92 , m_scrollbar(0)
114 if (m_scrollbar)
115 m_scrollbar->setParent(0);
136 if (!m_scrollbar && visibleItems() < client()->listSize()) {
138 m_scrollbar = client()->createScrollbar(this, VerticalScrollbar, SmallScrollbar);
139 m_scrollbar->styleChanged();
493 if (m_scrollbar)
494 damageRect.setWidth(damageRect.width() - m_scrollbar->frameRect().width());
528 if (!m_scrollbar)
656 if (m_scrollbar)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.h 61 WebCore::Scrollbar* scrollbar() const { return m_scrollbar.get(); }
72 virtual WebCore::Scrollbar* verticalScrollbar() const { return m_scrollbar.get(); }
126 RefPtr<WebCore::Scrollbar> m_scrollbar; member in class:WebKit::WebPopupMenuProxyWin
WebPopupMenuProxyWin.cpp 188 if (m_scrollbar)
189 m_scrollbar->setParent(0);
204 if (!m_scrollbar && visibleItems() < m_items.size()) {
205 m_scrollbar = Scrollbar::createNativeScrollbar(this, VerticalScrollbar, SmallScrollbar);
206 m_scrollbar->styleChanged();
449 if (m_scrollbar)
450 damageRect.setWidth(damageRect.width() - m_scrollbar->frameRect().width());
458 return ((orientation == VerticalScrollbar) && m_scrollbar) ? (m_scrollbar->totalSize() - m_scrollbar->visibleSize()) : 0
    [all...]

Completed in 237 milliseconds