Home
last modified time | relevance | path

Searched refs:preservePhase (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/paint/
DSVGForeignObjectPainter.cpp38 …bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextCl… in paint() local
40 childPaintInfo.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground; in paint()
42 if (!preservePhase) { in paint()
DBlockFlowPainter.cpp14 …kFlowPainter::paintFloats(PaintInfo& paintInfo, const LayoutPoint& paintOffset, bool preservePhase) in paintFloats() argument
26 currentPaintInfo.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground; in paintFloats()
33 if (!preservePhase) { in paintFloats()
DBlockFlowPainter.h18 void paintFloats(PaintInfo&, const LayoutPoint&, bool preservePhase);
DBlockPainter.cpp124 …bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextCl… in paintAsInlineBlock() local
126 info.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground; in paintAsInlineBlock()
128 if (!preservePhase) { in paintAsInlineBlock()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlockFlow.h266 …virtual void paintFloats(PaintInfo&, const LayoutPoint&, bool preservePhase = false) OVERRIDE FINA…
DRenderBlockFlow.cpp2121 …derBlockFlow::paintFloats(PaintInfo& paintInfo, const LayoutPoint& paintOffset, bool preservePhase) in paintFloats() argument
2123 BlockFlowPainter(*this).paintFloats(paintInfo, paintOffset, preservePhase); in paintFloats()