OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_layoutState
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/rendering/
RenderView.h
108
// If we're doing a full repaint
m_layoutState
will be 0, but in that case layoutDelta doesn't matter.
111
return
m_layoutState
?
m_layoutState
->m_layoutDelta : IntSize();
115
if (
m_layoutState
)
116
m_layoutState
->m_layoutDelta += delta;
128
bool layoutStateEnabled() const { return m_layoutStateDisableCount == 0 &&
m_layoutState
; }
129
LayoutState* layoutState() const { return
m_layoutState
; }
193
if (!doingFullRepaint() || renderer->hasColumns() ||
m_layoutState
->isPaginated()) {
194
m_layoutState
= new (renderArena()) LayoutState(
m_layoutState
, renderer, offset, pageHeight, pageHeightChanged, colInfo)
[
all
...]
RenderView.cpp
58
,
m_layoutState
(0)
127
ASSERT(!
m_layoutState
);
134
m_layoutState
= &state;
141
ASSERT(
m_layoutState
== &state);
142
m_layoutState
= 0;
728
ASSERT(
m_layoutState
== 0);
730
m_layoutState
= new (renderArena()) LayoutState(root);
Completed in 120 milliseconds