OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shouldPaint
(Results
1 - 8
of
8
) 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
67
bool
shouldPaint
(PaintInfo&, const LayoutPoint&);
FloatingObjects.cpp
64
FloatingObject::FloatingObject(RenderBox* renderer, Type type, const LayoutRect& frameRect, bool
shouldPaint
, bool isDescendant)
70
, m_shouldPaint(
shouldPaint
)
88
PassOwnPtr<FloatingObject> FloatingObject::copyToNewContainer(LayoutSize offset, bool
shouldPaint
, bool isDescendant) const
90
return adoptPtr(new FloatingObject(renderer(), type(), LayoutRect(frameRect().location() - offset, frameRect().size()),
shouldPaint
, isDescendant));
RenderTableCell.cpp
[
all
...]
RenderBlockFlow.cpp
[
all
...]
RenderReplaced.cpp
113
if (!
shouldPaint
(paintInfo, paintOffset))
181
bool RenderReplaced::
shouldPaint
(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
RenderWidget.cpp
265
if (!
shouldPaint
(paintInfo, paintOffset))
RenderTreeAsText.cpp
675
bool
shouldPaint
= (behavior & RenderAsTextShowAllLayers) ? true : layer->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
679
if (
shouldPaint
&& paintsBackgroundSeparately)
693
if (
shouldPaint
)
[
all
...]
Completed in 48 milliseconds