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

  /external/webkit/Source/WebCore/platform/haiku/
RenderThemeHaiku.cpp 110 bool RenderThemeHaiku::paintCheckbox(RenderObject*, const PaintInfo& info, const IntRect& intRect)
116 BRect rect = intRect;
142 bool RenderThemeHaiku::paintRadio(RenderObject*, const PaintInfo& info, const IntRect& intRect)
148 BRect rect = intRect;
172 bool RenderThemeHaiku::paintMenuList(RenderObject*, const PaintInfo&, const IntRect&)
  /external/webkit/Source/WebCore/accessibility/
AccessibilitySlider.cpp 176 IntRect AccessibilitySliderThumb::elementRect() const
179 return IntRect();
181 IntRect intRect = toRenderSlider(m_parentSlider->renderer())->thumbRect();
182 FloatQuad floatQuad = m_parentSlider->renderer()->localToAbsoluteQuad(FloatRect(intRect));
  /external/webkit/Source/WebCore/rendering/
RenderThemeWinCE.cpp 192 bool RenderThemeWinCE::paintButton(RenderObject* o, const PaintInfo& i, const IntRect& r)
201 IntRect focusRect(r);
227 bool RenderThemeWinCE::paintTextField(RenderObject* o, const PaintInfo& i, const IntRect& r)
244 bool RenderThemeWinCE::paintMenuList(RenderObject* o, const PaintInfo& i, const IntRect& r)
251 bool RenderThemeWinCE::paintMenuListButton(RenderObject* o, const PaintInfo& i, const IntRect& r)
253 IntRect buttonRect(r.maxX() - dropDownButtonWidth - 1, r.y(), dropDownButtonWidth, r.height());
366 bool RenderThemeWinCE::paintSearchField(RenderObject* o, const PaintInfo& i, const IntRect& r)
371 bool RenderThemeWinCE::paintSearchFieldCancelButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
379 IntRect cancelBounds(IntPoint(x, y), cancelSize);
386 IntRect xBounds(cancelBounds.location() + IntSize(3, 3), xSize)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 41 typedef void (*FuncGradientFillRectLinear)(HDC hdc, const IntRect& r, const IntPoint& p0, const IntPoint& p1, const Vector<Gradient::ColorStop>& stops);
42 typedef void (*FuncGradientFillRectRadial)(HDC hdc, const IntRect& r, const IntPoint& p0, const IntPoint& p1, float r0, float r1, const Vector<Gradient::ColorStop>& stops);
62 static inline IntRect roundRect(const FloatRect& r)
64 return IntRect(stableRound(r.x()), stableRound(r.y()), stableRound(r.maxX()) - stableRound(r.x()), stableRound(r.maxY()) - stableRound(r.y()));
151 return IntRect(l, t, r - l + 1, b - t + 1);
154 template<class T> static inline IntRect mapRect(const IntRect& rect, const T& transform)
156 return mapRect<T, IntRect, int>(rect, transform);
219 IntRect mapRect(const IntRect& rect) cons
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 320 IntRect pageRect = m_pageRects[pageNumber];
331 IntRect pageRect = m_pageRects[pageNumber];
393 m_pageCount = m_plugin->printBegin(IntRect(printRect), m_printerDPI);
    [all...]

Completed in 3619 milliseconds