OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:marginafter
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.h
52
virtual LayoutUnit
marginAfter
(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
RenderBox.cpp
[
all
...]
RenderBlockFlow.h
313
return std::max<LayoutUnit>(block->
marginAfter
(), 0);
317
return std::max<LayoutUnit>(-block->
marginAfter
(), 0);
RenderBoxModelObject.h
150
virtual LayoutUnit
marginAfter
(const RenderStyle* otherStyle = 0) const = 0;
155
LayoutUnit marginLogicalHeight() const { return marginBefore() +
marginAfter
(); }
RenderBox.h
272
virtual LayoutUnit
marginAfter
(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL { return m_marginBox.after((overrideStyle ? overrideStyle : style())->writingMode()); }
305
virtual LayoutUnit collapsedMarginAfter() const { return
marginAfter
(); }
372
void computeBlockDirectionMargins(const RenderBlock* containingBlock, LayoutUnit& marginBefore, LayoutUnit&
marginAfter
) const;
[
all
...]
RenderTable.cpp
446
oldTableLogicalTop += m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->
marginAfter
();
712
LayoutUnit captionLogicalHeight = m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->
marginAfter
();
[
all
...]
RenderBlock.h
305
LayoutUnit marginAfterForChild(const RenderBoxModelObject* child) const { return child->
marginAfter
(style()); }
[
all
...]
RootInlineBox.cpp
[
all
...]
RenderBlockFlow.cpp
[
all
...]
RenderInline.cpp
739
LayoutUnit RenderInline::
marginAfter
(const RenderStyle* otherStyle) const
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h
386
bool hasMarginAfterQuirk() const { return
marginAfter
().quirk(); }
[
all
...]
Completed in 253 milliseconds