/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXScrollbar.cpp | 37 : m_scrollbar(scrollbar) 44 m_scrollbar = 0; 55 if (!m_scrollbar) 58 return m_scrollbar->frameRect(); 71 if (!m_scrollbar) 74 if (m_scrollbar->orientation() == HorizontalScrollbar) 76 if (m_scrollbar->orientation() == VerticalScrollbar) 84 if (!m_scrollbar) 86 return m_scrollbar->enabled(); 91 if (!m_scrollbar) [all...] |
AXScrollbar.h | 42 Scrollbar* scrollbar() const { return m_scrollbar.get(); } 64 RefPtr<Scrollbar> m_scrollbar; member in class:WebCore::AXScrollbar
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebPluginScrollbarImpl.cpp | 69 m_scrollbar = Scrollbar::create( 90 webrect.x += m_scrollbar->x(); 91 webrect.y += m_scrollbar->y(); 106 IntPoint offset(parentPoint.x() - m_scrollbar->x(), parentPoint.y() - m_scrollbar->y()); 107 return m_scrollbar->Widget::convertFromContainingView(offset); 117 return m_scrollbar->isOverlayScrollbar(); 127 return m_scrollbar->frameRect().location(); 132 return m_scrollbar->frameRect().size(); 137 return m_scrollbar->enabled() [all...] |
WebScrollbarThemePainter.cpp | 43 m_scrollbar = painter.m_scrollbar; 53 m_theme->paintScrollbarBackground(&context, m_scrollbar); 60 m_theme->paintTrackBackground(&context, m_scrollbar, IntRect(rect)); 67 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), WebCore::BackTrackPart); 74 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), WebCore::ForwardTrackPart); 81 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), WebCore::BackButtonStartPart); 88 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), WebCore::BackButtonEndPart); 95 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), WebCore::ForwardButtonStartPart); 102 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), WebCore::ForwardButtonEndPart) [all...] |
WebPluginScrollbarImpl.h | 56 WebCore::Scrollbar* scrollbar() { return m_scrollbar.get(); } 99 RefPtr<WebCore::Scrollbar> m_scrollbar; member in class:blink::WebPluginScrollbarImpl
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebScrollbarImpl.cpp | 35 : m_scrollbar(scrollbar) 41 return m_scrollbar->isOverlayScrollbar(); 46 return m_scrollbar->value(); 51 return m_scrollbar->location(); 56 return m_scrollbar->size(); 61 return m_scrollbar->enabled(); 66 return m_scrollbar->maximum(); 71 return m_scrollbar->totalSize(); 76 return m_scrollbar->isScrollViewScrollbar(); 81 return m_scrollbar->isScrollableAreaActive() [all...] |
WebScrollbarThemeClientImpl.cpp | 37 : m_scrollbar(scrollbar) 69 return m_scrollbar->size(); 74 return m_scrollbar->location(); 116 return static_cast<WebCore::ScrollbarOverlayStyle>(m_scrollbar->scrollbarOverlayStyle()); 122 m_scrollbar->getTickmarks(webTickmarks); 130 return m_scrollbar->isScrollableAreaActive(); 149 return m_scrollbar->isCustomScrollbar(); 154 return static_cast<WebCore::ScrollbarOrientation>(m_scrollbar->orientation()); 159 return m_scrollbar->isLeftSideVerticalScrollbar(); 164 return m_scrollbar->value() [all...] |
WebScrollbarImpl.h | 63 RefPtr<WebCore::Scrollbar> m_scrollbar; member in class:blink::WebScrollbarImpl
|
WebScrollbarThemeClientImpl.h | 83 blink::WebScrollbar* m_scrollbar; member in class:WebCore::WebScrollbarThemeClientImpl
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderScrollbarPart.cpp | 41 , m_scrollbar(scrollbar) 61 if (m_scrollbar->orientation() == HorizontalScrollbar) 72 setWidth(m_scrollbar->width()); 76 setHeight(m_scrollbar->height()); 84 setHeight(m_scrollbar->height()); 86 setWidth(m_scrollbar->width()); 100 if (!m_scrollbar->owningRenderer()) 105 int visibleSize = m_scrollbar->owningRenderer()->width() - m_scrollbar->owningRenderer()->style()->borderLeftWidth() - m_scrollbar->owningRenderer()->style()->borderRightWidth() [all...] |
RenderScrollbarPart.h | 77 RenderScrollbar* m_scrollbar; member in class:WebCore::FINAL
|
HitTestResult.h | 66 Scrollbar* scrollbar() const { return m_scrollbar.get(); } 142 RefPtr<Scrollbar> m_scrollbar; member in class:WebCore::HitTestResult
|
HitTestResult.cpp | 89 , m_scrollbar(other.scrollbar()) 110 m_scrollbar = other.scrollbar(); 182 m_scrollbar = s; 456 if (!m_scrollbar && other.scrollbar()) {
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebScrollbarThemePainter.h | 80 WebCore::Scrollbar* m_scrollbar; member in class:blink::WebScrollbarThemePainter
|