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

1 2 3 45

  /external/webkit/WebCore/rendering/
RenderImage.cpp 355 void RenderImage::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
367 GraphicsContext* context = paintInfo.context;
370 if (paintInfo.phase == PaintPhaseSelection)
433 if (style()->highlight() != nullAtom && !paintInfo.context->paintingDisabled())
443 void RenderImage::paint(PaintInfo& paintInfo, int tx, int ty)
445 RenderReplaced::paint(paintInfo, tx, ty);
447 if (paintInfo.phase == PaintPhaseOutline)
448 paintFocusRings(paintInfo, style())
    [all...]
RenderBlock.cpp     [all...]
InlineBox.h 115 virtual void paint(RenderObject::PaintInfo&, int tx, int ty);
RenderLayerBacking.cpp     [all...]
RenderTableCell.cpp 643 void RenderTableCell::paint(PaintInfo& paintInfo, int tx, int ty)
645 if (paintInfo.phase == PaintPhaseCollapsedTableBorders && style()->visibility() == VISIBLE) {
646 if (!shouldPaintWithinRoot(paintInfo))
651 int os = 2 * maximalOutlineSize(paintInfo.phase);
652 if (ty - table()->outerBorderTop() < paintInfo.rect.bottom() + os &&
653 ty + height() + table()->outerBorderBottom() > paintInfo.rect.y() - os)
654 paintCollapsedBorder(paintInfo.context, tx, ty, width(), height());
658 RenderBlock::paint(paintInfo, tx, ty);
818 void RenderTableCell::paintBackgroundsBehindCell(PaintInfo& paintInfo, int tx, int ty, RenderObject* backgroundObject
    [all...]
RenderVideo.cpp 149 void RenderVideo::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
168 paintIntoRect(paintInfo.context, rect);
170 mediaPlayer->paint(paintInfo.context, rect);
RenderBox.cpp 561 void RenderBox::paint(PaintInfo& paintInfo, int tx, int ty)
567 PaintInfo childInfo(paintInfo);
568 childInfo.paintingRoot = paintingRootForChildren(paintInfo);
573 void RenderBox::paintRootBoxDecorations(PaintInfo& paintInfo, int tx, int ty)
612 paintFillLayers(paintInfo, bgColor, bgLayer, bx, by, bw, bh, CompositeSourceOver, bodyObject);
615 paintBorder(paintInfo.context, tx, ty, w, h, style());
618 void RenderBox::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty
    [all...]
RenderTable.cpp 484 void RenderTable::paint(PaintInfo& paintInfo, int tx, int ty)
489 PaintPhase paintPhase = paintInfo.phase;
492 if (ty + topVisibleOverflow() >= paintInfo.rect.bottom() + os || ty + bottomVisibleOverflow() <= paintInfo.rect.y() - os)
494 if (tx + leftVisibleOverflow() >= paintInfo.rect.right() + os || tx + rightVisibleOverflow() <= paintInfo.rect.x() - os)
497 bool pushedClip = pushContentsClip(paintInfo, tx, ty);
498 paintObject(paintInfo, tx, ty);
500 popContentsClip(paintInfo, paintPhase, tx, ty)
    [all...]
RenderView.cpp 182 void RenderView::paint(PaintInfo& paintInfo, int tx, int ty)
189 setPrintRect(paintInfo.rect);
192 paintObject(paintInfo, tx, ty);
200 void RenderView::paintBoxDecorations(PaintInfo& paintInfo, int, int)
229 paintInfo.context->save();
230 paintInfo.context->setCompositeOperation(CompositeCopy);
231 paintInfo.context->fillRect(paintInfo.rect, baseColor, style()->colorSpace())
    [all...]
RenderFileUploadControl.cpp 182 void RenderFileUploadControl::paintObject(PaintInfo& paintInfo, int tx, int ty)
188 if (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseChildBlockBackgrounds) {
193 paintInfo.context->save();
194 paintInfo.context->clip(clipRect);
197 if (paintInfo.phase == PaintPhaseForeground) {
218 paintInfo.context->setFillColor(style()->color(), style()->colorSpace());
221 paintInfo.context->drawBidiText(style()->font(), textRun, IntPoint(textX, textY));
233 m_fileChooser->icon()->paint(paintInfo.context, IntRect(iconX, iconY, iconWidth, iconHeight))
    [all...]
RenderListItem.cpp 309 void RenderListItem::paint(PaintInfo& paintInfo, int tx, int ty)
314 RenderBlock::paint(paintInfo, tx, ty);
RenderWidget.cpp 219 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty)
221 if (!shouldPaint(paintInfo, tx, ty))
227 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
228 paintBoxDecorations(paintInfo, tx, ty);
230 if (paintInfo.phase == PaintPhaseMask) {
231 paintMask(paintInfo, tx, ty);
235 if (!m_frameView || paintInfo.phase != PaintPhaseForeground || style()->visibility() != VISIBLE)
239 if (style()->highlight() != nullAtom && !paintInfo.context->paintingDisabled()
    [all...]
RenderFrameSet.cpp 83 void RenderFrameSet::paintColumnBorder(const PaintInfo& paintInfo, const IntRect& borderRect)
85 if (!paintInfo.rect.intersects(borderRect))
91 GraphicsContext* context = paintInfo.context;
103 void RenderFrameSet::paintRowBorder(const PaintInfo& paintInfo, const IntRect& borderRect)
105 if (!paintInfo.rect.intersects(borderRect))
111 GraphicsContext* context = paintInfo.context;
123 void RenderFrameSet::paint(PaintInfo& paintInfo, int tx, int ty
    [all...]
RenderTheme.cpp 221 bool RenderTheme::paint(RenderObject* o, const RenderObject::PaintInfo& paintInfo, const IntRect& r)
226 if (paintInfo.context->updatingControlTints()) {
231 if (paintInfo.context->paintingDisabled())
247 m_theme->paint(part, controlStatesForRenderer(o), const_cast<GraphicsContext*>(paintInfo.context), r, o->style()->effectiveZoom(), o->view()->frameView());
258 return paintCheckbox(o, paintInfo, r);
260 return paintRadio(o, paintInfo, r);
266 return paintButton(o, paintInfo, r);
268 return paintInnerSpinButton(o, paintInfo, r);
270 return paintOuterSpinButton(o, paintInfo, r)
    [all...]
SVGRootInlineBox.cpp 339 SVGRootInlineBoxPaintWalker(SVGRootInlineBox* rootBox, SVGResourceFilter* rootFilter, RenderObject::PaintInfo paintInfo, int tx, int ty)
342 , m_paintInfo(paintInfo)
343 , m_savedInfo(paintInfo)
645 RenderObject::PaintInfo m_paintInfo;
646 RenderObject::PaintInfo m_savedInfo;
664 void SVGRootInlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
666 if (paintInfo.context->paintingDisabled() || paintInfo.phase != PaintPhaseForeground
    [all...]
RenderListMarker.cpp     [all...]
SVGInlineTextBox.cpp 351 void SVGInlineTextBox::paintCharacters(RenderObject::PaintInfo& paintInfo, int tx, int ty, const SVGChar& svgChar, const UChar* chars, int length, SVGTextPaintInfo& textPaintInfo)
353 if (renderer()->style()->visibility() != VISIBLE || paintInfo.phase == PaintPhaseOutline)
356 ASSERT(paintInfo.phase != PaintPhaseSelfOutline && paintInfo.phase != PaintPhaseChildOutlines);
365 if (!haveSelection && paintInfo.phase == PaintPhaseSelection)
379 paintInfo.context->concatCTM(ctm);
383 if (paintInfo.phase != PaintPhaseSelection && !isPrinting && textPaintInfo.subphase == SVGTextPaintSubphaseBackground) {
386 if (styleToUse->highlight() != nullAtom && !paintInfo.context->paintingDisabled())
391 paintCompositionBackground(paintInfo.context, tx, ty, styleToUse, font,
    [all...]
RenderTableSection.cpp     [all...]
RenderBoxModelObject.cpp 443 void RenderBoxModelObject::paintFillLayerExtended(const PaintInfo& paintInfo, const Color& c, const FillLayer* bgLayer, int tx, int ty, int w, int h, InlineFlowBox* box, CompositeOperator op, RenderObject* backgroundObject)
445 GraphicsContext* context = paintInfo.context;
501 maskRect.intersect(paintInfo.rect);
513 PaintInfo info(maskImageContext, maskRect, PaintPhaseTextClip, true, 0, 0);
576 rect.intersect(paintInfo.rect);
601 destRect.intersect(paintInfo.rect);
    [all...]
RenderLayer.cpp     [all...]
RenderTextControlSingleLine.cpp 181 void RenderTextControlSingleLine::paint(PaintInfo& paintInfo, int tx, int ty)
183 RenderTextControl::paint(paintInfo, tx, ty);
185 if (paintInfo.phase == PaintPhaseBlockBackground && m_shouldDrawCapsLockIndicator) {
190 theme()->paintCapsLockIndicator(this, paintInfo, contentsRect);
InlineTextBox.cpp 327 void InlineTextBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
329 if (isLineBreak() || !renderer()->shouldPaintWithinRoot(paintInfo) || renderer()->style()->visibility() != VISIBLE ||
330 m_truncation == cFullTruncation || paintInfo.phase == PaintPhaseOutline)
333 ASSERT(paintInfo.phase != PaintPhaseSelfOutline && paintInfo.phase != PaintPhaseChildOutlines);
341 if (xPos >= paintInfo.rect.right() || xPos + w <= paintInfo.rect.x())
347 bool haveSelection = !isPrinting && paintInfo.phase != PaintPhaseTextClip && selectionState() != RenderObject::SelectionNone;
348 if (!haveSelection && paintInfo.phase == PaintPhaseSelection
    [all...]
RenderInline.cpp 406 void RenderInline::paint(PaintInfo& paintInfo, int tx, int ty)
408 m_lineBoxes.paint(this, paintInfo, tx, ty);
    [all...]
RenderObject.cpp     [all...]

Completed in 450 milliseconds

1 2 3 45