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

  /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...]

Completed in 275 milliseconds