Searched refs:shouldPaint (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFloatingObjects.h54 PassOwnPtr<FloatingObject> copyToNewContainer(LayoutSize, bool shouldPaint = false, bool isDescendant = false) const;
87 bool shouldPaint() const { return m_shouldPaint; } function in class:blink::FloatingObject
88 void setShouldPaint(bool shouldPaint) { m_shouldPaint = shouldPaint; } argument
98 FloatingObject(RenderBox*, Type, const LayoutRect&, bool shouldPaint, bool isDescendant);
H A DRenderReplaced.h73 bool shouldPaint(PaintInfo&, const LayoutPoint&);
H A DFloatingObjects.cpp63 FloatingObject::FloatingObject(RenderBox* renderer, Type type, const LayoutRect& frameRect, bool shouldPaint, bool isDescendant) argument
69 , m_shouldPaint(shouldPaint)
87 PassOwnPtr<FloatingObject> FloatingObject::copyToNewContainer(LayoutSize offset, bool shouldPaint, bool isDescendant) const argument
89 return adoptPtr(new FloatingObject(renderer(), type(), LayoutRect(frameRect().location() - offset, frameRect().size()), shouldPaint, isDescendant));
H A DRenderTableCell.cpp1010 bool shouldPaint; member in struct:blink::CollapsedBorder
1025 void addBorder(const CollapsedBorderValue& borderValue, BoxSide borderSide, bool shouldPaint, argument
1028 if (borderValue.exists() && shouldPaint) {
1031 m_borders[m_count].shouldPaint = shouldPaint;
1044 if (m_borders[i].borderValue.exists() && m_borders[i].shouldPaint) {
1045 m_borders[i].shouldPaint = false;
H A DRenderWidget.cpp200 if (!shouldPaint(paintInfo, paintOffset))
H A DRenderReplaced.cpp112 if (!shouldPaint(paintInfo, paintOffset))
180 bool RenderReplaced::shouldPaint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) function in class:blink::RenderReplaced
H A DRenderTreeAsText.cpp598 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : layer->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer); local
602 if (shouldPaint && paintsBackgroundSeparately)
616 if (shouldPaint)
H A DRenderBlockFlow.cpp2067 && (floatingObject->shouldPaint() || (paintAllDescendants && floatingObject->renderer()->isDescendantOf(this)))) {
2552 bool shouldPaint = false; local
2560 shouldPaint = true;
2566 m_floatingObjects->add(floatingObject->copyToNewContainer(offset, shouldPaint, true));
2569 if (makeChildPaintOtherFloats && !floatingObject->shouldPaint() && !floatingObject->renderer()->hasSelfPaintingLayer()
2635 if (floatingObject->shouldPaint() && !floatingObject->renderer()->hasSelfPaintingLayer()) {
2683 if (floatingObject->shouldPaint()) {
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBlockFlowPainter.cpp24 if (floatingObject->shouldPaint() && !floatingObject->renderer()->hasSelfPaintingLayer()) {

Completed in 258 milliseconds