HomeSort by relevance Sort by last modified time
    Searched refs:PaintInfo (Results 26 - 50 of 124) sorted by null

12 3 4 5

  /external/webkit/WebCore/platform/android/
RenderThemeAndroid.cpp 64 static SkCanvas* getCanvasFromInfo(const RenderObject::PaintInfo& info)
212 bool RenderThemeAndroid::paintCheckbox(RenderObject* obj, const RenderObject::PaintInfo& info, const IntRect& rect)
218 bool RenderThemeAndroid::paintButton(RenderObject* obj, const RenderObject::PaintInfo& info, const IntRect& rect)
262 bool RenderThemeAndroid::paintMediaMuteButton(RenderObject* o, const RenderObject::PaintInfo& paintInfo, const IntRect& rect)
264 RenderSkinMediaButton::Draw(getCanvasFromInfo(paintInfo), rect, RenderSkinMediaButton::MUTE);
268 bool RenderThemeAndroid::paintMediaPlayButton(RenderObject* o, const RenderObject::PaintInfo& paintInfo, const IntRect& rect)
272 RenderSkinMediaButton::Draw(getCanvasFromInfo(paintInfo), rect, RenderSkinMediaButton::PLAY);
274 RenderSkinMediaButton::Draw(getCanvasFromInfo(paintInfo), rect, RenderSkinMediaButton::PAUSE)
    [all...]
  /external/webkit/WebCore/rendering/
RenderImage.h 61 void paintFocusRings(PaintInfo&, const RenderStyle*);
62 virtual void paint(PaintInfo&, int tx, int ty);
75 virtual void paintReplaced(PaintInfo&, int tx, int ty);
RenderLineBoxList.h 66 void paint(RenderBoxModelObject*, RenderObject::PaintInfo&, int x, int y) const;
RenderSVGHiddenContainer.cpp 45 void RenderSVGHiddenContainer::paint(PaintInfo&, int, int)
RenderSVGViewportContainer.h 53 virtual void applyViewportClip(PaintInfo&);
RenderTableCell.h 90 virtual void paint(PaintInfo&, int tx, int ty);
92 void paintBackgroundsBehindCell(PaintInfo&, int tx, int ty, RenderObject* backgroundObject);
126 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
127 virtual void paintMask(PaintInfo&, int tx, int ty);
RootInlineBox.h 94 void paintEllipsisBox(RenderObject::PaintInfo&, int tx, int ty) const;
101 void paintCustomHighlight(RenderObject::PaintInfo&, int tx, int ty, const AtomicString& highlightType);
104 virtual void paint(RenderObject::PaintInfo&, int tx, int ty);
115 int tx, int ty, const RenderObject::PaintInfo*);
RenderSVGContainer.h 45 virtual void paint(PaintInfo&, int parentX, int parentY);
69 virtual void applyViewportClip(PaintInfo&) { }
RenderBlock.h 117 int blockX, int blockY, int tx, int ty, const PaintInfo*);
119 int blockX, int blockY, int tx, int ty, const PaintInfo*);
120 IntRect fillHorizontalSelectionGap(RenderObject* selObj, int xPos, int yPos, int width, int height, const PaintInfo*);
171 virtual void paint(PaintInfo&, int tx, int ty);
172 virtual void paintObject(PaintInfo&, int tx, int ty);
277 void paintFloats(PaintInfo&, int tx, int ty, bool preservePhase = false);
278 void paintContents(PaintInfo&, int tx, int ty);
279 void paintColumnContents(PaintInfo&, int tx, int ty, bool paintFloats = false);
280 void paintColumnRules(PaintInfo&, int tx, int ty);
281 void paintChildren(PaintInfo&, int tx, int ty)
    [all...]
RenderFrameSet.h 101 virtual void paint(PaintInfo&, int tx, int ty);
120 void paintRowBorder(const PaintInfo&, const IntRect&);
121 void paintColumnBorder(const PaintInfo&, const IntRect&);
EllipsisBox.h 42 virtual void paint(RenderObject::PaintInfo&, int tx, int ty);
RenderFileUploadControl.h 59 virtual void paintObject(PaintInfo&, int tx, int ty);
RenderForeignObject.h 40 virtual void paint(PaintInfo&, int parentX, int parentY);
RenderHTMLCanvas.cpp 59 void RenderHTMLCanvas::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
63 static_cast<HTMLCanvasElement*>(node())->paint(paintInfo.context, rect);
RenderListItem.h 57 virtual void paint(PaintInfo&, int tx, int ty);
RenderReplica.cpp 62 void RenderReplica::paint(PaintInfo& paintInfo, int tx, int ty)
64 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseMask)
70 if (paintInfo.phase == PaintPhaseForeground)
74 paintInfo.context, paintInfo.rect,
77 else if (paintInfo.phase == PaintPhaseMask)
78 paintMask(paintInfo, tx, ty);
RenderSVGText.h 49 virtual void paint(PaintInfo&, int tx, int ty);
RenderTable.h 161 virtual void paint(PaintInfo&, int tx, int ty);
162 virtual void paintObject(PaintInfo&, int tx, int ty);
163 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
164 virtual void paintMask(PaintInfo&, int tx, int ty);
RenderVideo.h 67 virtual void paintReplaced(PaintInfo&, int tx, int ty);
SVGMarkerLayoutInfo.h 51 void drawMarkers(RenderObject::PaintInfo&);
  /external/webkit/WebCore/mathml/
RenderMathMLBlock.h 51 virtual void paint(PaintInfo&, int tx, int ty);
  /external/webkit/WebCore/svg/graphics/
SVGResourceMarker.cpp 62 void SVGResourceMarker::draw(RenderObject::PaintInfo& paintInfo, const AffineTransform& transform)
75 RenderObject::PaintInfo info(paintInfo);
SVGResourceMarker.h 59 void draw(RenderObject::PaintInfo&, const AffineTransform&);
  /external/webkit/WebCore/platform/wx/
RenderThemeWx.cpp 58 virtual bool paintCheckbox(RenderObject* o, const RenderObject::PaintInfo& i, const IntRect& r)
65 virtual bool paintRadio(RenderObject* o, const RenderObject::PaintInfo& i, const IntRect& r)
75 virtual bool paintButton(RenderObject*, const RenderObject::PaintInfo&, const IntRect&);
78 virtual bool paintTextField(RenderObject*, const RenderObject::PaintInfo&, const IntRect&);
83 virtual bool paintMenuList(RenderObject*, const RenderObject::PaintInfo&, const IntRect&);
86 virtual bool paintMenuListButton(RenderObject*, const RenderObject::PaintInfo&, const IntRect&);
262 bool RenderThemeWx::paintButton(RenderObject* o, const RenderObject::PaintInfo& i, const IntRect& r)
321 bool RenderThemeWx::paintTextField(RenderObject* o, const RenderObject::PaintInfo& i, const IntRect& r)
343 bool RenderThemeWx::paintMenuList(RenderObject* o, const RenderObject::PaintInfo& i, const IntRect& r)
372 bool RenderThemeWx::paintMenuListButton(RenderObject* o, const RenderObject::PaintInfo& i, const IntRect& r
    [all...]
  /external/webkit/WebCore/platform/haiku/
RenderThemeHaiku.cpp 110 bool RenderThemeHaiku::paintCheckbox(RenderObject*, const RenderObject::PaintInfo& info, const IntRect& intRect)
142 bool RenderThemeHaiku::paintRadio(RenderObject*, const RenderObject::PaintInfo& info, const IntRect& intRect)
172 bool RenderThemeHaiku::paintMenuList(RenderObject*, const RenderObject::PaintInfo&, const IntRect&)

Completed in 213 milliseconds

12 3 4 5