HomeSort by relevance Sort by last modified time
    Searched refs:scrollbarThickness (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeAura.h 40 virtual int scrollbarThickness(ScrollbarControlSize) OVERRIDE;
ScrollbarThemeMacNonOverlayAPI.h 40 virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) OVERRIDE;
ScrollbarThemeMock.cpp 42 int ScrollbarThemeMock::scrollbarThickness(ScrollbarControlSize controlSize)
ScrollbarThemeMock.h 36 virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) OVERRIDE;
ScrollbarThemeMacOverlayAPI.h 43 virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) OVERRIDE;
ScrollbarThemeOverlay.h 44 virtual int scrollbarThickness(ScrollbarControlSize) OVERRIDE;
ScrollbarTheme.h 50 virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar) { return 0; }
ScrollbarThemeNonMacCommon.cpp 75 int thickness = scrollbarThickness(scrollbar->controlSize());
ScrollbarThemeMacNonOverlayAPI.mm 156 int ScrollbarThemeMacNonOverlayAPI::scrollbarThickness(ScrollbarControlSize controlSize)
210 int thickness = scrollbarThickness(scrollbar->controlSize());
244 int thickness = scrollbarThickness(scrollbar->controlSize());
280 int thickness = scrollbarThickness(scrollbar->controlSize());
ScrollbarThemeOverlay.cpp 60 int ScrollbarThemeOverlay::scrollbarThickness(ScrollbarControlSize controlSize)
ScrollbarThemeMacOverlayAPI.mm 123 int ScrollbarThemeMacOverlayAPI::scrollbarThickness(ScrollbarControlSize controlSize)
ScrollbarThemeAura.cpp 62 int ScrollbarThemeAura::scrollbarThickness(ScrollbarControlSize controlSize)
Scrollbar.cpp 80 int thickness = m_theme->scrollbarThickness(controlSize);
ScrollbarTheme.cpp 318 return scrollbarThickness(scrollbar->controlSize());
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.cpp 278 int scrollbarThickness = thumbThickness;
284 scrollbarThickness = ScrollbarTheme::theme()->scrollbarThickness(RegularScrollbar);
298 int xPosition = isHorizontal ? 0 : m_innerViewportContainerLayer->size().width() - scrollbarThickness;
299 int yPosition = isHorizontal ? m_innerViewportContainerLayer->size().height() - scrollbarThickness : 0;
300 int width = isHorizontal ? m_innerViewportContainerLayer->size().width() - scrollbarThickness : scrollbarThickness;
301 int height = isHorizontal ? scrollbarThickness : m_innerViewportContainerLayer->size().height() - scrollbarThickness;
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbarThemeGeometry.h 49 virtual int scrollbarThickness(WebScrollbar*) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarTheme.h 39 virtual int scrollbarThickness(ScrollbarControlSize controlSize) OVERRIDE { return ScrollbarTheme::theme()->scrollbarThickness(controlSize); }
RenderTextControl.h 46 int scrollbarThickness() const;
RenderTextControlMultiLine.cpp 65 return static_cast<LayoutUnit>(ceilf(charWidth * factor)) + scrollbarThickness();
RenderTextControl.cpp 122 int RenderTextControl::scrollbarThickness() const
125 return ScrollbarTheme::theme()->scrollbarThickness();
139 logicalHeight += scrollbarThickness();
RenderScrollbarPart.cpp 92 return ScrollbarTheme::theme()->scrollbarThickness();
RenderThemeChromiumSkia.cpp 409 return ScrollbarTheme::theme()->scrollbarThickness();
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeGeometryNative.cpp 105 int WebScrollbarThemeGeometryNative::scrollbarThickness(WebScrollbar* scrollbar)
108 return m_theme->scrollbarThickness(client.controlSize());
WebScrollbarThemeGeometryNative.h 54 virtual int scrollbarThickness(WebScrollbar*) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginScrollbarImpl.cpp 56 return ScrollbarTheme::theme()->scrollbarThickness();

Completed in 216 milliseconds

1 2