OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shouldPaint
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
FloatingObjects.h
54
PassOwnPtr<FloatingObject> copyToNewContainer(LayoutSize, bool
shouldPaint
= false, bool isDescendant = false) const;
87
bool
shouldPaint
() const { return m_shouldPaint; }
88
void setShouldPaint(bool
shouldPaint
) { m_shouldPaint =
shouldPaint
; }
98
FloatingObject(RenderBox*, Type, const LayoutRect&, bool
shouldPaint
, bool isDescendant);
RenderReplaced.h
73
bool
shouldPaint
(PaintInfo&, const LayoutPoint&);
FloatingObjects.cpp
63
FloatingObject::FloatingObject(RenderBox* renderer, Type type, const LayoutRect& frameRect, bool
shouldPaint
, bool isDescendant)
69
, m_shouldPaint(
shouldPaint
)
87
PassOwnPtr<FloatingObject> FloatingObject::copyToNewContainer(LayoutSize offset, bool
shouldPaint
, bool isDescendant) const
89
return adoptPtr(new FloatingObject(renderer(), type(), LayoutRect(frameRect().location() - offset, frameRect().size()),
shouldPaint
, isDescendant));
RenderTableCell.cpp
[
all
...]
RenderWidget.cpp
200
if (!
shouldPaint
(paintInfo, paintOffset))
RenderReplaced.cpp
112
if (!
shouldPaint
(paintInfo, paintOffset))
180
bool RenderReplaced::
shouldPaint
(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
RenderTreeAsText.cpp
598
bool
shouldPaint
= (behavior & RenderAsTextShowAllLayers) ? true : layer->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
602
if (
shouldPaint
&& paintsBackgroundSeparately)
616
if (
shouldPaint
)
RenderBlockFlow.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
BlockFlowPainter.cpp
24
if (floatingObject->
shouldPaint
() && !floatingObject->renderer()->hasSelfPaintingLayer()) {
Completed in 801 milliseconds