Searched refs:paintInfo (Results 1 - 25 of 66) sorted by relevance

123

/external/webkit/Source/WebCore/rendering/
H A DRenderReplica.cpp63 void RenderReplica::paint(PaintInfo& paintInfo, int tx, int ty) argument
65 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseMask)
71 if (paintInfo.phase == PaintPhaseForeground)
75 paintInfo.context, paintInfo.rect,
78 else if (paintInfo.phase == PaintPhaseMask)
79 paintMask(paintInfo, tx, ty);
H A DRenderThemeChromiumMac.mm108 bool RenderThemeChromiumMac::paintMediaPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
110 return RenderMediaControlsChromium::paintMediaControlsPart(MediaPlayButton, object, paintInfo, rect);
113 bool RenderThemeChromiumMac::paintMediaMuteButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
115 return RenderMediaControlsChromium::paintMediaControlsPart(MediaMuteButton, object, paintInfo, rect);
118 bool RenderThemeChromiumMac::paintMediaSliderTrack(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
120 return RenderMediaControlsChromium::paintMediaControlsPart(MediaSlider, object, paintInfo, rect);
123 bool RenderThemeChromiumMac::paintMediaControlsBackground(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
125 return RenderMediaControlsChromium::paintMediaControlsPart(MediaTimelineContainer, object, paintInfo, rect);
141 bool RenderThemeChromiumMac::paintMediaVolumeSliderContainer(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
146 bool RenderThemeChromiumMac::paintMediaVolumeSliderTrack(RenderObject* object, const PaintInfo& paintInfo, cons
[all...]
H A DRenderReplaced.cpp105 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty) argument
107 if (!shouldPaint(paintInfo, tx, ty))
113 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
114 paintBoxDecorations(paintInfo, tx, ty);
116 if (paintInfo.phase == PaintPhaseMask) {
117 paintMask(paintInfo, tx, ty);
121 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth())
122 paintOutline(paintInfo
166 shouldPaint(PaintInfo& paintInfo, int& tx, int& ty) argument
[all...]
H A DRenderMediaControls.cpp74 static FloatRect getUnzoomedRectAndAdjustCurrentContext(RenderObject* o, const PaintInfo& paintInfo, const IntRect &originalRect) argument
81 paintInfo.context->translate(unzoomedRect.x(), unzoomedRect.y());
82 paintInfo.context->scale(FloatSize(zoomLevel, zoomLevel));
83 paintInfo.context->translate(-unzoomedRect.x(), -unzoomedRect.y());
106 bool RenderMediaControls::paintMediaControlsPart(MediaControlElementType part, RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
109 paintInfo.context->save();
112 wkDrawMediaUIPart(WKMediaUIPartFullscreenButton, themeStyle, paintInfo.context->platformContext(), r, determineState(o));
118 wkDrawMediaUIPart(captionsVisible ? WKMediaUIPartHideClosedCaptionsButton : WKMediaUIPartShowClosedCaptionsButton, themeStyle, paintInfo.context->platformContext(), r, determineState(o));
125 wkDrawMediaUIPart(audioEnabled ? WKMediaUIPartMuteButton : WKMediaUIPartUnMuteButton, themeStyle, paintInfo.context->platformContext(), r, determineState(o));
132 wkDrawMediaUIPart(canPlay ? WKMediaUIPartPlayButton : WKMediaUIPartPauseButton, themeStyle, paintInfo
[all...]
H A DRenderMediaControlsChromium.cpp71 static bool paintMediaMuteButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
82 return paintMediaButton(paintInfo.context, rect, soundDisabled);
84 return paintMediaButton(paintInfo.context, rect, mediaElement->muted() ? soundNone: soundFull);
87 static bool paintMediaPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
98 return paintMediaButton(paintInfo.context, rect, mediaPlayDisabled);
100 return paintMediaButton(paintInfo.context, rect, mediaElement->canPlay() ? mediaPlay : mediaPause);
109 static bool paintMediaSlider(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
116 GraphicsContext* context = paintInfo.context;
168 static bool paintMediaSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
181 return paintMediaButton(paintInfo
184 paintMediaVolumeSlider(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
203 paintMediaVolumeSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
212 paintMediaTimelineContainer(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
245 paintMediaControlsPart(MediaControlElementType part, RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
[all...]
H A DRenderWidget.cpp253 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty) argument
255 if (!shouldPaint(paintInfo, tx, ty))
261 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
262 paintBoxDecorations(paintInfo, tx, ty);
264 if (paintInfo.phase == PaintPhaseMask) {
265 paintMask(paintInfo, tx, ty);
269 if (!m_frameView || paintInfo.phase != PaintPhaseForeground || style()->visibility() != VISIBLE)
273 if (style()->highlight() != nullAtom && !paintInfo.context->paintingDisabled())
284 paintInfo
[all...]
H A DRenderDetailsMarker.cpp121 void RenderDetailsMarker::paint(PaintInfo& paintInfo, int tx, int ty) argument
123 if (paintInfo.phase != PaintPhaseForeground || style()->visibility() != VISIBLE) {
124 RenderBlock::paint(paintInfo, tx, ty);
131 overflowRect.inflate(maximalOutlineSize(paintInfo.phase));
133 if (!paintInfo.rect.intersects(overflowRect))
137 paintInfo.context->setStrokeColor(color, style()->colorSpace());
138 paintInfo.context->setStrokeStyle(SolidStroke);
139 paintInfo.context->setStrokeThickness(1.0f);
140 paintInfo.context->setFillColor(color, style()->colorSpace());
142 paintInfo
[all...]
H A DRenderScrollbarPart.cpp173 PaintInfo paintInfo(graphicsContext, rect, PaintPhaseBlockBackground, false, 0, 0);
174 paint(paintInfo, tx, ty);
175 paintInfo.phase = PaintPhaseChildBlockBackgrounds;
176 paint(paintInfo, tx, ty);
177 paintInfo.phase = PaintPhaseFloat;
178 paint(paintInfo, tx, ty);
179 paintInfo.phase = PaintPhaseForeground;
180 paint(paintInfo, tx, ty);
181 paintInfo.phase = PaintPhaseOutline;
182 paint(paintInfo, t
[all...]
H A DRenderThemeMac.mm711 bool RenderThemeMac::paintTextField(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
713 LocalCurrentGraphicsContext localContext(paintInfo.context);
722 bool RenderThemeMac::paintCapsLockIndicator(RenderObject*, const PaintInfo& paintInfo, const IntRect& r)
724 if (paintInfo.context->paintingDisabled())
727 LocalCurrentGraphicsContext localContext(paintInfo.context);
728 wkDrawCapsLockIndicator(paintInfo.context->platformContext(), r);
733 bool RenderThemeMac::paintTextArea(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
735 LocalCurrentGraphicsContext localContext(paintInfo.context);
772 bool RenderThemeMac::paintMenuList(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
774 LocalCurrentGraphicsContext localContext(paintInfo
[all...]
H A DRenderThemeWinCE.cpp371 bool RenderThemeWinCE::paintSearchFieldCancelButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
380 paintInfo.context->save();
381 paintInfo.context->addRoundedRectClip(RoundedIntRect(cancelBounds, cancelRadius, cancelRadius, cancelRadius, cancelRadius));
382 paintInfo.context->fillRect(cancelBounds, buttonColor, ColorSpaceDeviceRGB);
387 paintInfo.context->setStrokeColor(Color::white, ColorSpaceDeviceRGB);
388 paintInfo.context->drawLine(xBounds.location(), xBounds.location() + xBounds.size());
389 paintInfo.context->drawLine(IntPoint(xBounds.maxX(), xBounds.y()), IntPoint(xBounds.x(), xBounds.maxY()));
391 paintInfo.context->restore();
416 bool RenderThemeWinCE::paintSearchFieldResultsDecoration(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
429 bool RenderThemeWinCE::paintSearchFieldResultsButton(RenderObject* o, const PaintInfo& paintInfo, cons argument
543 paintMediaFullscreenButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
556 paintMediaMuteButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
581 paintMediaPlayButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
605 paintMediaSeekBackButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
621 paintMediaSeekForwardButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
637 paintMediaSliderTrack(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
642 paintMediaSliderThumb(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
[all...]
H A DRenderThemeSafari.cpp413 bool RenderThemeSafari::paintCheckbox(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
420 paintThemePart(SafariTheme::CheckboxPart, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o));
452 bool RenderThemeSafari::paintRadio(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
459 paintThemePart(RadioButtonPart, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o));
576 bool RenderThemeSafari::paintButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
605 paintThemePart(part, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o));
609 bool RenderThemeSafari::paintTextField(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
613 paintThemePart(SafariTheme::TextFieldPart, paintInfo.context->platformContext(), r, (NSControlSize)0, determineState(o) & ~FocusedState);
621 bool RenderThemeSafari::paintCapsLockIndicator(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
626 if (paintInfo
637 paintTextArea(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
746 paintMenuListButtonGradients(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
807 paintMenuListButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
953 paintSliderTrack(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
997 paintSliderThumb(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
1028 paintSearchField(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
1081 paintSearchFieldCancelButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect&) argument
1135 paintSearchFieldResultsDecoration(RenderObject* o, const PaintInfo& paintInfo, const IntRect&) argument
1158 paintSearchFieldResultsButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect&) argument
1173 paintMediaFullscreenButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
1178 paintMediaMuteButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
1183 paintMediaPlayButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
1188 paintMediaSeekBackButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
1193 paintMediaSeekForwardButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
1198 paintMediaSliderTrack(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
1203 paintMediaSliderThumb(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
[all...]
H A DRenderHTMLCanvas.cpp64 void RenderHTMLCanvas::paintReplaced(PaintInfo& paintInfo, int tx, int ty) argument
68 static_cast<HTMLCanvasElement*>(node())->paint(paintInfo.context, rect);
H A DRenderFieldset.cpp131 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty) argument
133 if (!paintInfo.shouldPaintWithinRoot(this))
140 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty);
155 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Normal);
157 paintFillLayers(paintInfo, style()->visitedDependentColor(CSSPropertyBackgroundColor), style()->backgroundLayers(), tx, ty, w, h);
158 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Inset);
164 GraphicsContext* graphicsContext = paintInfo.context;
180 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true);
185 void RenderFieldset::paintMask(PaintInfo& paintInfo, int tx, int ty) argument
187 if (style()->visibility() != VISIBLE || paintInfo
[all...]
H A DRenderTheme.cpp249 bool RenderTheme::paint(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
254 if (paintInfo.context->updatingControlTints()) {
259 if (paintInfo.context->paintingDisabled())
275 m_theme->paint(part, controlStatesForRenderer(o), const_cast<GraphicsContext*>(paintInfo.context), r, o->style()->effectiveZoom(), o->view()->frameView());
286 return paintCheckbox(o, paintInfo, r);
288 return paintRadio(o, paintInfo, r);
294 return paintButton(o, paintInfo, r);
296 return paintInnerSpinButton(o, paintInfo, r);
298 return paintOuterSpinButton(o, paintInfo, r);
301 return paintMenuList(o, paintInfo,
387 paintBorderOnly(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
438 paintDecorations(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
927 paintInputFieldSpeechButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
[all...]
H A DRenderThemeChromiumSkia.cpp274 bool RenderThemeChromiumSkia::paintSearchFieldCancelButton(RenderObject* cancelButtonObject, const PaintInfo& paintInfo, const IntRect& r) argument
295 paintInfo.context->drawImage(isPressed(cancelButtonObject) ? cancelPressedImage : cancelImage,
317 bool RenderThemeChromiumSkia::paintSearchFieldResultsDecoration(RenderObject* magnifierObject, const PaintInfo& paintInfo, const IntRect& r) argument
337 paintInfo.context->drawImage(magnifierImage, magnifierObject->style()->colorSpace(), paintingRect);
352 bool RenderThemeChromiumSkia::paintSearchFieldResultsButton(RenderObject* magnifierObject, const PaintInfo& paintInfo, const IntRect& r) argument
370 paintInfo.context->drawImage(magnifierImage, magnifierObject->style()->colorSpace(), paintingRect);
374 bool RenderThemeChromiumSkia::paintMediaControlsBackground(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
377 return RenderMediaControlsChromium::paintMediaControlsPart(MediaTimelineContainer, object, paintInfo, rect);
380 UNUSED_PARAM(paintInfo);
386 bool RenderThemeChromiumSkia::paintMediaSliderTrack(RenderObject* object, const PaintInfo& paintInfo, cons argument
398 paintMediaVolumeSliderTrack(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
419 paintMediaSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
431 paintMediaVolumeSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
443 paintMediaPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
455 paintMediaMuteButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect) argument
[all...]
H A DRenderFileUploadControl.cpp212 void RenderFileUploadControl::paintObject(PaintInfo& paintInfo, int tx, int ty) argument
219 if (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseChildBlockBackgrounds) {
224 paintInfo.context->save();
225 paintInfo.context->clip(clipRect);
228 if (paintInfo.phase == PaintPhaseForeground) {
249 paintInfo.context->setFillColor(style()->visitedDependentColor(CSSPropertyColor), style()->colorSpace());
252 paintInfo.context->drawBidiText(style()->font(), textRun, IntPoint(textX, textY));
264 m_fileChooser->icon()->paint(paintInfo.context, IntRect(iconX, iconY, iconWidth, iconHeight));
269 RenderBlock::paintObject(paintInfo, t
[all...]
H A DRenderLineBoxList.cpp194 bool RenderLineBoxList::lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, int tx, int ty) const argument
197 int logicalTop = min(box->logicalTopVisualOverflow(root->lineTop()), root->selectionTop()) - renderer->maximalOutlineSize(paintInfo.phase);
198 int logicalBottom = box->logicalBottomVisualOverflow(root->lineBottom()) + renderer->maximalOutlineSize(paintInfo.phase);
200 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, tx, ty);
203 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, int tx, int ty) const argument
206 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection && paintInfo.phase != PaintPhaseOutline
207 && paintInfo.phase != PaintPhaseSelfOutline && paintInfo
[all...]
H A DInlineBox.cpp162 void InlineBox::paint(PaintInfo& paintInfo, int tx, int ty, int /* lineTop */, int /*lineBottom*/) argument
164 if (!paintInfo.shouldPaintWithinRoot(renderer()) || (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection))
174 bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextClip;
175 PaintInfo info(paintInfo);
176 info.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGContainer.cpp94 void RenderSVGContainer::paint(PaintInfo& paintInfo, int, int) argument
96 if (paintInfo.context->paintingDisabled())
104 if (!SVGRenderSupport::paintInfoIntersectsRepaintRect(repaintRect, localToParentTransform(), paintInfo))
107 PaintInfo childPaintInfo(paintInfo);
125 if (paintInfo.phase == PaintPhaseForeground)
126 SVGRenderSupport::finishRenderSVGContent(this, childPaintInfo, paintInfo.context);
135 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth() && style()->visibility() == VISIBLE) {
137 paintOutline(paintInfo.context, paintRectInParent.x(), paintRectInParent.y(), paintRectInParent.width(), paintRectInParent.height());
H A DSVGInlineFlowBox.cpp37 void SVGInlineFlowBox::paintSelectionBackground(PaintInfo& paintInfo) argument
39 ASSERT(paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection);
40 ASSERT(!paintInfo.context->paintingDisabled());
42 PaintInfo childPaintInfo(paintInfo);
51 void SVGInlineFlowBox::paint(PaintInfo& paintInfo, int, int, int, int) argument
53 ASSERT(paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection);
54 ASSERT(!paintInfo.context->paintingDisabled());
59 PaintInfo childPaintInfo(paintInfo);
[all...]
H A DSVGRenderSupport.cpp80 bool SVGRenderSupport::prepareToRenderSVGContent(RenderObject* object, PaintInfo& paintInfo) argument
97 paintInfo.context->clip(repaintRect);
98 paintInfo.context->beginTransparencyLayer(opacity);
102 paintInfo.context->clip(repaintRect);
103 paintInfo.context->setShadow(IntSize(shadow->x(), shadow->y()), shadow->blur(), shadow->color(), style->colorSpace());
104 paintInfo.context->beginTransparencyLayer(1);
113 if (!masker->applyResource(object, style, paintInfo.context, ApplyToDefaultMode))
118 if (!clipper->applyResource(object, style, paintInfo.context, ApplyToDefaultMode))
124 if (!filter->applyResource(object, style, paintInfo.context, ApplyToDefaultMode))
132 void SVGRenderSupport::finishRenderSVGContent(RenderObject* object, PaintInfo& paintInfo, GraphicsContex argument
182 paintInfoIntersectsRepaintRect(const FloatRect& localRepaintRect, const AffineTransform& localTransform, const PaintInfo& paintInfo) argument
[all...]
H A DSVGInlineTextBox.cpp161 void SVGInlineTextBox::paintSelectionBackground(PaintInfo& paintInfo) argument
163 ASSERT(paintInfo.shouldPaintWithinRoot(renderer()));
164 ASSERT(paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection);
175 bool paintSelectedTextOnly = paintInfo.phase == PaintPhaseSelection;
229 paintInfo.context->save();
232 paintInfo.context->concatCTM(fragmentTransform);
234 paintInfo.context->setFillColor(backgroundColor, style->colorSpace());
235 paintInfo.context->fillRect(selectionRectForTextFragment(fragment, fragmentStartPosition, fragmentEndPosition, style), backgroundColor, style->colorSpace());
238 paintInfo
244 paint(PaintInfo& paintInfo, int, int, int, int) argument
[all...]
H A DRenderSVGRoot.cpp145 void RenderSVGRoot::paint(PaintInfo& paintInfo, int parentX, int parentY) argument
147 if (paintInfo.context->paintingDisabled())
154 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseBlockBackground || paintInfo.phase == PaintPhaseChildBlockBackground) && isVisible)
155 paintBoxDecorations(paintInfo, borderBoxOriginInContainer.x(), borderBoxOriginInContainer.y());
157 if (paintInfo.phase == PaintPhaseBlockBackground)
169 PaintInfo childPaintInfo(paintInfo);
187 SVGRenderSupport::finishRenderSVGContent(this, childPaintInfo, paintInfo.context);
191 if ((paintInfo.phase == PaintPhaseOutline || paintInfo
[all...]
/external/webkit/Source/WebCore/platform/android/
H A DRenderThemeAndroid.h85 virtual bool paintMediaFullscreenButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r);
86 virtual bool paintMediaMuteButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r);
87 virtual bool paintMediaPlayButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r);
88 virtual bool paintMediaSeekBackButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r);
89 virtual bool paintMediaSeekForwardButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r);
90 virtual bool paintMediaSliderTrack(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r);
91 virtual bool paintMediaSliderThumb(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r);
92 virtual bool paintMediaControlsBackground(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect);
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk.cpp320 bool RenderThemeGtk::paintSearchFieldResultsDecoration(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
330 paintGdkPixbuf(paintInfo.context, icon.get(), iconRect);
339 bool RenderThemeGtk::paintSearchFieldCancelButton(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
349 paintGdkPixbuf(paintInfo.context, icon.get(), iconRect);
365 bool RenderThemeGtk::paintCapsLockIndicator(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
369 if (paintInfo.context->paintingDisabled())
386 paintGdkPixbuf(paintInfo.context, icon.get(), iconRect);
492 bool RenderThemeGtk::paintMediaFullscreenButton(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
494 return paintMediaButton(renderObject, paintInfo.context, rect, GTK_STOCK_FULLSCREEN);
497 bool RenderThemeGtk::paintMediaMuteButton(RenderObject* renderObject, const PaintInfo& paintInfo, cons argument
506 paintMediaPlayButton(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
516 paintMediaSeekBackButton(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
521 paintMediaSeekForwardButton(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
526 paintMediaSliderTrack(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
586 paintMediaSliderThumb(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
593 paintMediaVolumeSliderContainer(RenderObject*, const PaintInfo& paintInfo, const IntRect& rect) argument
600 paintMediaVolumeSliderTrack(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
605 paintMediaVolumeSliderThumb(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
615 paintMediaCurrentTime(RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
[all...]

Completed in 469 milliseconds

123