OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_layoutDelta
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.h
122
return m_layoutState ? m_layoutState->
m_layoutDelta
: LayoutSize();
127
m_layoutState->
m_layoutDelta
+= delta;
129
m_layoutState->m_layoutDeltaXSaturated |= m_layoutState->
m_layoutDelta
.width() == LayoutUnit::max() || m_layoutState->
m_layoutDelta
.width() == LayoutUnit::min();
130
m_layoutState->m_layoutDeltaYSaturated |= m_layoutState->
m_layoutDelta
.height() == LayoutUnit::max() || m_layoutState->
m_layoutDelta
.height() == LayoutUnit::min();
140
return (delta.width() == m_layoutState->
m_layoutDelta
.width() || m_layoutState->m_layoutDeltaXSaturated) && (delta.height() == m_layoutState->
m_layoutDelta
.height() || m_layoutState->m_layoutDeltaYSaturated);
LayoutState.h
131
LayoutSize
m_layoutDelta
;
LayoutState.cpp
116
m_layoutDelta
= m_next->
m_layoutDelta
;
Completed in 85 milliseconds