OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RenderBlockFlowRareData
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockFlow.h
148
RenderBlockFlow::
RenderBlockFlowRareData
& rareData = ensureRareData();
291
struct
RenderBlockFlowRareData
{
292
WTF_MAKE_NONCOPYABLE(
RenderBlockFlowRareData
); WTF_MAKE_FAST_ALLOCATED;
294
RenderBlockFlowRareData
(const RenderBlockFlow* block)
334
LayoutUnit maxPositiveMarginBefore() const { return m_rareData ? m_rareData->m_margins.positiveMarginBefore() :
RenderBlockFlowRareData
::positiveMarginBeforeDefault(this); }
335
LayoutUnit maxNegativeMarginBefore() const { return m_rareData ? m_rareData->m_margins.negativeMarginBefore() :
RenderBlockFlowRareData
::negativeMarginBeforeDefault(this); }
336
LayoutUnit maxPositiveMarginAfter() const { return m_rareData ? m_rareData->m_margins.positiveMarginAfter() :
RenderBlockFlowRareData
::positiveMarginAfterDefault(this); }
337
LayoutUnit maxNegativeMarginAfter() const { return m_rareData ? m_rareData->m_margins.negativeMarginAfter() :
RenderBlockFlowRareData
::negativeMarginAfterDefault(this); }
357
m_rareData->m_margins = MarginValues(
RenderBlockFlowRareData
::positiveMarginBeforeDefault(this) ,
RenderBlockFlowRareData
::negativeMarginBeforeDefault(this)
[
all
...]
RenderBlockFlow.cpp
[
all
...]
Completed in 87 milliseconds