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

  /external/webkit/Source/WebCore/platform/
ScrollbarTheme.h 79 virtual void paintScrollCorner(ScrollView*, GraphicsContext* context, const IntRect& cornerRect) { defaultPaintScrollCorner(context, cornerRect); }
80 static void defaultPaintScrollCorner(GraphicsContext* context, const IntRect& cornerRect) { context->fillRect(cornerRect, Color::white, ColorSpaceDeviceRGB); }
ScrollbarThemeComposite.h 46 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect& cornerRect);
ScrollView.cpp 894 static void positionScrollCornerLayer(GraphicsLayer* graphicsLayer, const IntRect& cornerRect)
898 graphicsLayer->setDrawsContent(!cornerRect.isEmpty());
899 graphicsLayer->setPosition(cornerRect.location());
900 if (cornerRect.size() != graphicsLayer->size())
902 graphicsLayer->setSize(cornerRect.size());
939 IntRect cornerRect;
942 return cornerRect;
945 cornerRect.unite(IntRect(m_horizontalScrollbar->width(),
952 cornerRect.unite(IntRect(m_boundsSize.width() - m_verticalScrollbar->width(),
958 return cornerRect;
    [all...]
ScrollbarThemeComposite.cpp 307 void ScrollbarThemeComposite::paintScrollCorner(ScrollView* view, GraphicsContext* context, const IntRect& cornerRect)
311 if (page && page->settings()->shouldPaintCustomScrollbars() && page->chrome()->client()->paintCustomScrollCorner(context, cornerRect))
313 context->fillRect(cornerRect, Color::white, ColorSpaceDeviceRGB);
ScrollView.h 288 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect);
  /external/webkit/Source/WebCore/platform/chromium/
FramelessScrollView.cpp 80 void FramelessScrollView::paintScrollCorner(GraphicsContext* context, const IntRect& cornerRect)
83 ScrollbarTheme::defaultPaintScrollCorner(context, cornerRect);
FramelessScrollView.h 78 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect);
  /external/webkit/Source/WebCore/platform/qt/
ScrollbarThemeQt.h 44 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect& cornerRect);
  /external/webkit/Source/WebCore/platform/wx/
ScrollbarThemeWx.h 40 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect& cornerRect);
ScrollbarThemeWx.cpp 175 void ScrollbarThemeWx::paintScrollCorner(ScrollView* view, GraphicsContext* context, const IntRect& cornerRect)
181 ScrollbarTheme::paintScrollCorner(view, context, cornerRect);
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarTheme.h 47 virtual void paintScrollCorner(ScrollView*, GraphicsContext* context, const IntRect& cornerRect);
RenderScrollbarTheme.cpp 109 void RenderScrollbarTheme::paintScrollCorner(ScrollView*, GraphicsContext* context, const IntRect& cornerRect)
112 context->fillRect(cornerRect, Color::white, ColorSpaceDeviceRGB);
RenderLayer.cpp     [all...]
  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk.cpp 254 void ScrollbarThemeGtk::paintScrollCorner(ScrollView* view, GraphicsContext* context, const IntRect& cornerRect)
260 ScrollbarTheme::paintScrollCorner(view, context, cornerRect);
  /external/webkit/Source/WebCore/page/
FrameView.h 221 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect);
FrameView.cpp     [all...]

Completed in 514 milliseconds