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

123

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderReplica.cpp66 void RenderReplica::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
68 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseMask)
73 if (paintInfo.phase == PaintPhaseForeground) {
77 RenderLayer::LayerPaintingInfo paintingInfo(rootPaintingLayer, paintInfo.rect, PaintBehaviorNormal, LayoutSize(), 0);
79 layer()->parent()->paintLayer(paintInfo.context, paintingInfo, flags);
80 } else if (paintInfo.phase == PaintPhaseMask)
81 paintMask(paintInfo, adjustedPaintOffset);
H A DInlineElementBox.cpp66 void InlineElementBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, LayoutUnit /* lineTop */, LayoutUnit /*lineBottom*/) argument
68 if (!paintInfo.shouldPaintWithinRoot(renderer()) || (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection))
78 bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextClip;
79 PaintInfo info(paintInfo);
80 info.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
H A DRenderMediaControls.cpp87 static FloatRect getUnzoomedRectAndAdjustCurrentContext(const RenderObject& o, const PaintInfo& paintInfo, const IntRect &originalRect) argument
94 paintInfo.context->translate(unzoomedRect.x(), unzoomedRect.y());
95 paintInfo.context->scale(FloatSize(zoomLevel, zoomLevel));
96 paintInfo.context->translate(-unzoomedRect.x(), -unzoomedRect.y());
129 bool RenderMediaControls::paintMediaControlsPart(MediaControlElementType part, const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
131 GraphicsContextStateSaver stateSaver(*paintInfo.context);
138 wkDrawMediaUIPart(enterButton ? WKMediaUIPartFullscreenButton : WKMediaUIPartExitFullscreenButton, paintInfo.context->platformContext(), r, determineState(o));
145 wkDrawMediaUIPart(captionsVisible ? WKMediaUIPartHideClosedCaptionsButton : WKMediaUIPartShowClosedCaptionsButton, paintInfo.context->platformContext(), r, determineState(o));
152 wkDrawMediaUIPart(audioEnabled ? WKMediaUIPartMuteButton : WKMediaUIPartUnMuteButton, paintInfo.context->platformContext(), r, determineState(o));
159 wkDrawMediaUIPart(canPlay ? WKMediaUIPartPlayButton : WKMediaUIPartPauseButton, paintInfo
[all...]
H A DRenderThemeWinCE.cpp245 bool RenderThemeWinCE::paintMenuList(RenderObject* renderer, const PaintInfo& paintInfo, const IntRect& rect) argument
247 paintTextField(renderer, paintInfo, rect);
248 paintMenuListButtonDecorations(renderer, paintInfo, rect);
252 bool RenderThemeWinCE::paintMenuListButtonDecorations(RenderObject* renderer, const PaintInfo& paintInfo, const IntRect& rect) argument
256 paintInfo.context->drawFrameControl(buttonRect, DFC_SCROLL, DFCS_SCROLLCOMBOBOX | determineClassicState(renderer));
372 bool RenderThemeWinCE::paintSearchFieldCancelButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
381 paintInfo.context->save();
382 paintInfo.context->clipRoundedRect(RoundedRect(cancelBounds, cancelRadius, cancelRadius, cancelRadius, cancelRadius));
383 paintInfo.context->fillRect(cancelBounds, buttonColor, ColorSpaceDeviceRGB);
388 paintInfo
417 paintSearchFieldResultsDecorationPart(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
430 paintSearchFieldResultsButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
547 paintMediaFullscreenButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
560 paintMediaMuteButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
585 paintMediaPlayButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
609 paintMediaSeekBackButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
625 paintMediaSeekForwardButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
641 paintMediaSliderTrack(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
646 paintMediaSliderThumb(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
661 paintInnerSpinButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r) argument
[all...]
H A DRenderDetailsMarker.cpp116 void RenderDetailsMarker::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
118 if (paintInfo.phase != PaintPhaseForeground || style().visibility() != VISIBLE) {
119 RenderBlockFlow::paint(paintInfo, paintOffset);
126 overflowRect.inflate(maximalOutlineSize(paintInfo.phase));
128 if (!paintInfo.rect.intersects(pixelSnappedIntRect(overflowRect)))
132 paintInfo.context->setStrokeColor(color, style().colorSpace());
133 paintInfo.context->setStrokeStyle(SolidStroke);
134 paintInfo.context->setStrokeThickness(1.0f);
135 paintInfo.context->setFillColor(color, style().colorSpace());
138 paintInfo
[all...]
H A DRenderHTMLCanvas.cpp67 void RenderHTMLCanvas::paintReplaced(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
69 GraphicsContext* context = paintInfo.context;
78 GraphicsContextStateSaver stateSaver(*paintInfo.context, clip);
80 paintInfo.context->clip(pixelSnappedIntRect(contentRect));
83 if (paintInfo.phase == PaintPhaseForeground)
H A DRenderWidget.cpp218 void RenderWidget::paintContents(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
227 LayoutRect paintRect = paintInfo.rect;
233 paintInfo.context->translate(widgetPaintOffset);
236 m_widget->paint(paintInfo.context, pixelSnappedIntRect(paintRect));
239 paintInfo.context->translate(-widgetPaintOffset);
244 if (paintInfo.overlapTestRequests && runOverlapTests) {
245 ASSERT(!paintInfo.overlapTestRequests->contains(this));
246 paintInfo.overlapTestRequests->set(this, m_widget->frameRect());
251 void RenderWidget::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
253 if (!shouldPaint(paintInfo, paintOffse
[all...]
H A DRenderSnapshottedPlugIn.cpp94 void RenderSnapshottedPlugIn::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
96 if (paintInfo.phase == PaintPhaseForeground && plugInImageElement().displayState() < HTMLPlugInElement::Restarting) {
97 paintSnapshot(paintInfo, paintOffset);
100 PaintPhase newPhase = (paintInfo.phase == PaintPhaseChildOutlines) ? PaintPhaseOutline : paintInfo.phase;
103 PaintInfo paintInfoForChild(paintInfo);
113 RenderEmbeddedObject::paint(paintInfo, paintOffset);
116 void RenderSnapshottedPlugIn::paintSnapshot(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
127 GraphicsContext* context = paintInfo.context;
H A DRenderFieldset.cpp139 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
141 if (!paintInfo.shouldPaintWithinRoot(*this))
147 return RenderBlockFlow::paintBoxDecorations(paintInfo, paintOffset);
162 if (!boxShadowShouldBeAppliedToBackground(determineBackgroundBleedAvoidance(paintInfo.context)))
163 paintBoxShadow(paintInfo, paintRect, style(), Normal);
164 paintFillLayers(paintInfo, style().visitedDependentColor(CSSPropertyBackgroundColor), style().backgroundLayers(), paintRect);
165 paintBoxShadow(paintInfo, paintRect, style(), Inset);
171 GraphicsContext* graphicsContext = paintInfo.context;
191 paintBorder(paintInfo, paintRect, style());
194 void RenderFieldset::paintMask(PaintInfo& paintInfo, cons argument
[all...]
H A DRenderTheme.cpp264 bool RenderTheme::paint(const RenderObject& o, ControlStates* controlStates, const PaintInfo& paintInfo, const LayoutRect& r) argument
269 if (paintInfo.context->updatingControlTints()) {
274 if (paintInfo.context->paintingDisabled())
291 m_theme->paint(part, controlStates, const_cast<GraphicsContext*>(paintInfo.context), devicePixelSnappedRect, o.style().effectiveZoom(), &o.view().frameView());
304 return paintCheckbox(o, paintInfo, integralSnappedRect);
306 return paintRadio(o, paintInfo, integralSnappedRect);
311 return paintButton(o, paintInfo, integralSnappedRect);
313 return paintInnerSpinButton(o, paintInfo, integralSnappedRect);
316 return paintMenuList(o, paintInfo, devicePixelSnappedRect);
323 return paintMeter(o, paintInfo, integralSnappedRec
406 paintBorderOnly(const RenderObject& o, const PaintInfo& paintInfo, const LayoutRect& r) argument
463 paintDecorations(const RenderObject& renderer, const PaintInfo& paintInfo, const LayoutRect& rect) argument
970 paintInputFieldSpeechButton(const RenderObject& object, const PaintInfo& paintInfo, const IntRect& rect) argument
1005 paintSliderTicks(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& rect) argument
[all...]
H A DRenderThemeSafari.cpp419 bool RenderThemeSafari::paintCheckbox(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
426 paintThemePart(SafariTheme::CheckboxPart, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o));
458 bool RenderThemeSafari::paintRadio(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
465 paintThemePart(RadioButtonPart, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o));
582 bool RenderThemeSafari::paintButton(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
611 paintThemePart(part, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o));
615 bool RenderThemeSafari::paintTextField(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
619 paintThemePart(SafariTheme::TextFieldPart, paintInfo.context->platformContext(), r, (NSControlSize)0, determineState(o) & ~FocusedState);
627 bool RenderThemeSafari::paintCapsLockIndicator(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
632 if (paintInfo
643 paintTextArea(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
752 paintMenuListButtonGradients(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
813 paintMenuListButtonDecorations(const RenderObject& renderer, const PaintInfo& paintInfo, const FloatRect& rect) argument
959 paintSliderTrack(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
998 paintSliderThumb(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
1020 paintSearchField(const RenderObject& o, const PaintInfo& paintInfo, const IntRect& r) argument
1073 paintSearchFieldCancelButton(const RenderObject& o, const PaintInfo& paintInfo, const IntRect&) argument
1128 paintSearchFieldResultsDecorationPart(const RenderObject& o, const PaintInfo& paintInfo, const IntRect&) argument
1152 paintSearchFieldResultsButton(const RenderObject& o, const PaintInfo& paintInfo, const IntRect&) argument
1213 paintMeter(const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
[all...]
H A DRenderReplaced.cpp133 void RenderReplaced::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
135 if (!shouldPaint(paintInfo, paintOffset))
140 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
141 paintBoxDecorations(paintInfo, adjustedPaintOffset);
143 if (paintInfo.phase == PaintPhaseMask) {
144 paintMask(paintInfo, adjustedPaintOffset);
149 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style().outlineWidth())
150 paintOutline(paintInfo, paintRec
196 shouldPaint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
[all...]
H A DRenderScrollbarPart.cpp178 PaintInfo paintInfo(graphicsContext, pixelSnappedIntRect(rect), PaintPhaseBlockBackground, PaintBehaviorNormal);
179 paint(paintInfo, paintOffset);
180 paintInfo.phase = PaintPhaseChildBlockBackgrounds;
181 paint(paintInfo, paintOffset);
182 paintInfo.phase = PaintPhaseFloat;
183 paint(paintInfo, paintOffset);
184 paintInfo.phase = PaintPhaseForeground;
185 paint(paintInfo, paintOffset);
186 paintInfo.phase = PaintPhaseOutline;
187 paint(paintInfo, paintOffse
[all...]
H A DTextPaintStyle.cpp74 TextPaintStyle computeTextPaintStyle(const RenderText& renderer, const RenderStyle& lineStyle, const PaintInfo& paintInfo) argument
83 if (paintInfo.forceBlackText()) {
118 TextPaintStyle computeTextSelectionPaintStyle(const TextPaintStyle& textPaintStyle, const RenderText& renderer, const RenderStyle& lineStyle, const PaintInfo& paintInfo, bool& paintSelectedTextOnly, bool& paintSelectedTextSeparately, const ShadowData*& selectionShadow) argument
120 paintSelectedTextOnly = (paintInfo.phase == PaintPhaseSelection);
122 selectionShadow = paintInfo.forceBlackText() ? nullptr : lineStyle.textShadow();
127 Color foreground = paintInfo.forceBlackText() ? Color::black : renderer.selectionForegroundColor();
134 Color emphasisMarkForeground = paintInfo.forceBlackText() ? Color::black : renderer.selectionEmphasisMarkColor();
142 const ShadowData* shadow = paintInfo.forceBlackText() ? 0 : pseudoStyle->textShadow();
156 Color stroke = paintInfo.forceBlackText() ? Color::black : pseudoStyle->visitedDependentColor(CSSPropertyWebkitTextStrokeColor);
166 UNUSED_PARAM(paintInfo);
[all...]
H A DRenderThemeIOS.mm131 for (int paintInfo = 0; paintInfo < 4; ++paintInfo) {
132 float end = logf(std::max(gradient->end[paintInfo], 0.01f));
133 float start = logf(std::max(gradient->start[paintInfo], 0.01f));
134 outData[paintInfo] = expf(start - (end + start) * a);
372 bool RenderThemeIOS::paintCheckboxDecorations(const RenderObject& box, const PaintInfo& paintInfo, const IntRect& rect)
374 GraphicsContextStateSaver stateSaver(*paintInfo.context);
375 FloatRect clip = addRoundedBorderClip(box, paintInfo.context, rect);
380 CGContextRef cgContext = paintInfo
[all...]
H A DRenderTableRow.cpp234 void RenderTableRow::paintOutlineForRowIfNeeded(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
237 PaintPhase paintPhase = paintInfo.phase;
239 paintOutline(paintInfo, LayoutRect(adjustedPaintOffset, size()));
242 void RenderTableRow::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
246 paintOutlineForRowIfNeeded(paintInfo, paintOffset);
249 if (paintInfo.phase == PaintPhaseBlockBackground || paintInfo.phase == PaintPhaseChildBlockBackground)
250 cell->paintBackgroundsBehindCell(paintInfo, paintOffset, this);
252 cell->paint(paintInfo, paintOffset);
H A DRenderLineBoxList.cpp197 bool RenderLineBoxList::lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, const LayoutPoint& offset) const argument
200 LayoutUnit logicalTop = std::min<LayoutUnit>(box->logicalTopVisualOverflow(rootBox.lineTop()), rootBox.selectionTop()) - renderer->maximalOutlineSize(paintInfo.phase);
201 LayoutUnit logicalBottom = box->logicalBottomVisualOverflow(rootBox.lineBottom()) + renderer->maximalOutlineSize(paintInfo.phase);
203 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, offset);
206 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, const LayoutPoint& paintOffset) const argument
209 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection && paintInfo.phase != PaintPhaseOutline
210 && paintInfo.phase != PaintPhaseSelfOutline && paintInfo
[all...]
H A DRenderFileUploadControl.cpp117 void RenderFileUploadControl::paintObject(PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
123 GraphicsContextStateSaver stateSaver(*paintInfo.context, false);
124 if (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseChildBlockBackgrounds) {
130 paintInfo.context->clip(clipRect);
133 if (paintInfo.phase == PaintPhaseForeground) {
166 paintInfo.context->setFillColor(style().visitedDependentColor(CSSPropertyColor), style().colorSpace());
169 paintInfo.context->drawBidiText(font, textRun, IntPoint(roundToInt(textX), roundToInt(textY)));
185 theme().paintFileUploadIconDecorations(*this, *buttonRenderer, paintInfo, iconRect, inputElement().icon(), decorationsType);
189 inputElement().icon()->paint(paintInfo
[all...]
H A DRenderThemeMac.mm832 bool RenderThemeMac::paintTextField(const RenderObject& o, const PaintInfo& paintInfo, const FloatRect& r)
834 LocalCurrentGraphicsContext localContext(paintInfo.context);
838 GraphicsContextStateSaver stateSaver(*paintInfo.context);
852 bool RenderThemeMac::paintCapsLockIndicator(const RenderObject&, const PaintInfo& paintInfo, const IntRect& r)
854 if (paintInfo.context->paintingDisabled())
857 LocalCurrentGraphicsContext localContext(paintInfo.context);
863 bool RenderThemeMac::paintTextArea(const RenderObject& o, const PaintInfo& paintInfo, const FloatRect& r)
865 LocalCurrentGraphicsContext localContext(paintInfo.context);
902 bool RenderThemeMac::paintMenuList(const RenderObject& renderer, const PaintInfo& paintInfo, const FloatRect& rect)
904 LocalCurrentGraphicsContext localContext(paintInfo
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DSVGInlineFlowBox.cpp34 void SVGInlineFlowBox::paintSelectionBackground(PaintInfo& paintInfo) argument
36 ASSERT(paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection);
37 ASSERT(!paintInfo.context->paintingDisabled());
39 PaintInfo childPaintInfo(paintInfo);
48 void SVGInlineFlowBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, LayoutUnit, LayoutUnit) argument
50 ASSERT(paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection);
51 ASSERT(!paintInfo.context->paintingDisabled());
53 SVGRenderingContext renderingContext(renderer(), paintInfo, SVGRenderingContex local
[all...]
H A DRenderSVGForeignObject.cpp55 void RenderSVGForeignObject::paint(PaintInfo& paintInfo, const LayoutPoint&) argument
57 if (paintInfo.context->paintingDisabled()
58 || (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection))
61 PaintInfo childPaintInfo(paintInfo);
70 if (paintInfo.phase == PaintPhaseForeground) {
78 bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextClip;
80 childPaintInfo.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
H A DRenderSVGImage.cpp133 void RenderSVGImage::paint(PaintInfo& paintInfo, const LayoutPoint&) argument
135 if (paintInfo.context->paintingDisabled() || paintInfo.phase != PaintPhaseForeground
140 if (!SVGRenderSupport::paintInfoIntersectsRepaintRect(boundingBox, m_localTransform, paintInfo))
143 PaintInfo childPaintInfo(paintInfo);
162 void RenderSVGImage::paintForeground(PaintInfo& paintInfo) argument
170 paintInfo.context->drawImage(image.get(), ColorSpaceDeviceRGB, destRect, srcRect);
H A DRenderSVGContainer.cpp109 void RenderSVGContainer::paint(PaintInfo& paintInfo, const LayoutPoint&) argument
111 if (paintInfo.context->paintingDisabled())
119 if (!SVGRenderSupport::paintInfoIntersectsRepaintRect(repaintRect, localToParentTransform(), paintInfo))
122 PaintInfo childPaintInfo(paintInfo);
150 if (paintInfo.phase == PaintPhaseSelfOutline && style().outlineWidth() && style().visibility() == VISIBLE) {
152 paintOutline(paintInfo, paintRectInParent);
H A DSVGInlineTextBox.cpp182 void SVGInlineTextBox::paintSelectionBackground(PaintInfo& paintInfo) argument
184 ASSERT(paintInfo.shouldPaintWithinRoot(renderer()));
185 ASSERT(paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection);
195 bool paintSelectedTextOnly = paintInfo.phase == PaintPhaseSelection;
232 GraphicsContextStateSaver stateSaver(*paintInfo.context);
235 paintInfo.context->concatCTM(fragmentTransform);
237 paintInfo.context->setFillColor(backgroundColor, style.colorSpace());
238 paintInfo.context->fillRect(selectionRectForTextFragment(fragment, fragmentStartPosition, fragmentEndPosition, &style), backgroundColor, style.colorSpace());
246 void SVGInlineTextBox::paint(PaintInfo& paintInfo, cons argument
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DRenderThemeGtk3.cpp223 static void paintToggle(const RenderThemeGtk* theme, GType widgetType, const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& fullRect) argument
262 gtk_render_check(context, paintInfo.context->platformContext()->cr(), rect.x(), rect.y(), rect.width(), rect.height());
264 gtk_render_option(context, paintInfo.context->platformContext()->cr(), rect.x(), rect.y(), rect.width(), rect.height());
271 gtk_render_focus(context, paintInfo.context->platformContext()->cr(), indicatorRect.x(), indicatorRect.y(),
283 bool RenderThemeGtk::paintCheckbox(const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
285 paintToggle(this, GTK_TYPE_CHECK_BUTTON, renderObject, paintInfo, rect);
294 bool RenderThemeGtk::paintRadio(const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
296 paintToggle(this, GTK_TYPE_RADIO_BUTTON, renderObject, paintInfo, rect);
300 static void renderButton(RenderTheme* theme, GtkStyleContext* context, const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
330 gtk_render_background(context, paintInfo
366 paintButton(const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
467 paintMenuList(const RenderObject& renderObject, const PaintInfo& paintInfo, const FloatRect& r) argument
601 paintTextField(const RenderObject& renderObject, const PaintInfo& paintInfo, const FloatRect& rect) argument
649 paintSliderTrack(const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
684 paintSliderThumb(const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
734 paintProgressBar(const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
790 paintSpinArrowButton(RenderTheme* theme, GtkStyleContext* context, const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect, GtkArrowType arrowType) argument
856 paintInnerSpinButton(const RenderObject& renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
[all...]

Completed in 265 milliseconds

123