HomeSort by relevance Sort by last modified time
    Searched refs:PaintInfo (Results 101 - 125 of 146) sorted by null

1 2 3 45 6

  /external/webkit/Source/WebCore/rendering/
RenderView.h 72 virtual void paint(PaintInfo&, int tx, int ty);
73 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
RenderLineBoxList.cpp 34 #include "PaintInfo.h"
194 bool RenderLineBoxList::lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, int tx, int ty) const
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
206 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection && paintInfo.phase != PaintPhaseOutline
    [all...]
InlineTextBox.h 105 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
RenderDetailsMarker.cpp 26 #include "PaintInfo.h"
121 void RenderDetailsMarker::paint(PaintInfo& paintInfo, int tx, int ty)
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)
    [all...]
RenderInline.h 118 virtual void paint(PaintInfo&, int tx, int ty);
RenderScrollbarPart.cpp 29 #include "PaintInfo.h"
173 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)
    [all...]
RenderText.h 150 virtual void paint(PaintInfo&, int, int) { ASSERT_NOT_REACHED(); }
RenderReplaced.cpp 97 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty)
99 if (!shouldPaint(paintInfo, tx, ty))
105 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
106 paintBoxDecorations(paintInfo, tx, ty);
108 if (paintInfo.phase == PaintPhaseMask) {
109 paintMask(paintInfo, tx, ty);
113 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth()
    [all...]
RenderLayerBacking.cpp 318 IntRect result = PaintInfo::infiniteRect();
377 ASSERT(parentClipRect != PaintInfo::infiniteRect());
    [all...]
RenderTheme.cpp 36 #include "PaintInfo.h"
249 bool RenderTheme::paint(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
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)
    [all...]
RenderImage.cpp 241 void RenderImage::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
250 GraphicsContext* context = paintInfo.context;
253 if (paintInfo.phase == PaintPhaseSelection)
319 if (style()->highlight() != nullAtom && !paintInfo.context->paintingDisabled())
329 void RenderImage::paint(PaintInfo& paintInfo, int tx, int ty)
331 RenderReplaced::paint(paintInfo, tx, ty);
333 if (paintInfo.phase == PaintPhaseOutline)
334 paintAreaElementFocusRing(paintInfo);
    [all...]
EllipsisBox.cpp 26 #include "PaintInfo.h"
32 void EllipsisBox::paint(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom)
34 GraphicsContext* context = paintInfo.context;
50 Color foreground = paintInfo.forceBlackText ? Color::black : renderer()->selectionForegroundColor();
69 m_markupBox->paint(paintInfo, tx, ty, lineTop, lineBottom);
InlineBox.h 133 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
RenderBoxModelObject.h 118 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, InlineFlowBox* = 0, int inlineBoxWidth = 0, int inlineBoxHeight = 0, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
RenderListBox.cpp 48 #include "PaintInfo.h"
258 void RenderListBox::paintObject(PaintInfo& paintInfo, int tx, int ty)
265 if (paintInfo.phase == PaintPhaseForeground) {
268 paintItemForeground(paintInfo, tx, ty, index);
274 RenderBlock::paintObject(paintInfo, tx, ty);
276 switch (paintInfo.phase) {
281 paintScrollbar(paintInfo, tx, ty);
285 paintScrollbar(paintInfo, tx, ty);
291 paintItemBackground(paintInfo, tx, ty, index)
    [all...]
RenderTableRow.cpp 31 #include "PaintInfo.h"
211 void RenderTableRow::paint(PaintInfo& paintInfo, int tx, int ty)
219 if (paintInfo.phase == PaintPhaseBlockBackground || paintInfo.phase == PaintPhaseChildBlockBackground) {
221 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, this);
224 child->paint(paintInfo, tx, ty);
RenderVideo.cpp 37 #include "PaintInfo.h"
187 void RenderVideo::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
204 paintIntoRect(paintInfo.context, rect);
206 mediaPlayer->paintCurrentFrameInContext(paintInfo.context, rect);
208 mediaPlayer->paint(paintInfo.context, rect);
RootInlineBox.cpp 33 #include "PaintInfo.h"
136 void RootInlineBox::paintEllipsisBox(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom) const
138 if (hasEllipsisBox() && paintInfo.shouldPaintWithinRoot(renderer()) && renderer()->style()->visibility() == VISIBLE
139 && paintInfo.phase == PaintPhaseForeground)
140 ellipsisBox()->paint(paintInfo, tx, ty, lineTop, lineBottom);
160 void RootInlineBox::paintCustomHighlight(PaintInfo& paintInfo, int tx, int ty, const AtomicString& highlightType)
162 if (!paintInfo.shouldPaintWithinRoot(renderer()) || renderer()->style()->visibility() != VISIBLE || paintInfo.phase != PaintPhaseForeground
    [all...]
RenderTable.cpp 513 void RenderTable::paint(PaintInfo& paintInfo, int tx, int ty)
518 PaintPhase paintPhase = paintInfo.phase;
523 overflowBox.inflate(maximalOutlineSize(paintInfo.phase));
525 if (!overflowBox.intersects(paintInfo.rect))
529 bool pushedClip = pushContentsClip(paintInfo, tx, ty);
530 paintObject(paintInfo, tx, ty);
532 popContentsClip(paintInfo, paintPhase, tx, ty);
535 void RenderTable::paintObject(PaintInfo& paintInfo, int tx, int ty
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGText.cpp 232 void RenderSVGText::paint(PaintInfo& paintInfo, int, int)
234 if (paintInfo.context->paintingDisabled())
237 if (paintInfo.phase != PaintPhaseForeground
238 && paintInfo.phase != PaintPhaseSelfOutline
239 && paintInfo.phase != PaintPhaseSelection)
242 PaintInfo blockInfo(paintInfo);
RenderSVGRoot.cpp 145 void RenderSVGRoot::paint(PaintInfo& paintInfo, int parentX, int parentY)
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)
168 // Make a copy of the PaintInfo because applyTransform will modify the damage rect.
169 PaintInfo childPaintInfo(paintInfo);
    [all...]
SVGRootInlineBox.cpp 38 void SVGRootInlineBox::paint(PaintInfo& paintInfo, int, int, int, int)
40 ASSERT(paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection);
41 ASSERT(!paintInfo.context->paintingDisabled());
49 PaintInfo childPaintInfo(paintInfo);
70 SVGRenderSupport::finishRenderSVGContent(boxRenderer, childPaintInfo, paintInfo.context);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFraction.cpp 35 #include "PaintInfo.h"
134 void RenderMathMLFraction::paint(PaintInfo& info, int tx, int ty)
RenderMathMLSquareRoot.cpp 35 #include "PaintInfo.h"
69 void RenderMathMLSquareRoot::paint(PaintInfo& info, int tx, int ty)
RenderMathMLRoot.cpp 35 #include "PaintInfo.h"
97 void RenderMathMLRoot::paint(PaintInfo& info, int tx, int ty)

Completed in 2119 milliseconds

1 2 3 45 6