OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:marginbefore
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBox.cpp
248
if (isOutOfFlowPositioned() && newStyle->hasStaticBlockPosition(isHorizontalWritingMode()) && oldStyle->
marginBefore
() != newStyle->
marginBefore
()
[
all
...]
RenderBoxModelObject.h
144
virtual LayoutUnit
marginBefore
(const RenderStyle* otherStyle = 0) const = 0;
150
LayoutUnit marginLogicalHeight() const { return
marginBefore
() + marginAfter(); }
RenderInline.h
51
virtual LayoutUnit
marginBefore
(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
RenderBox.h
260
virtual LayoutUnit
marginBefore
(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL { return m_marginBox.before((overrideStyle ? overrideStyle : style())->writingMode()); }
293
virtual LayoutUnit collapsedMarginBefore() const { return
marginBefore
(); }
370
void computeBlockDirectionMargins(const RenderBlock* containingBlock, LayoutUnit&
marginBefore
, LayoutUnit& marginAfter) const;
[
all
...]
RenderTable.cpp
367
caption->setLogicalLocation(LayoutPoint(caption->marginStart(), caption->
marginBefore
() + logicalHeight()));
372
caption->setLogicalLocation(LayoutPoint(caption->marginStart(), caption->
marginBefore
() + logicalHeight()));
377
setLogicalHeight(logicalHeight() + caption->logicalHeight() + caption->
marginBefore
() + caption->marginAfter());
439
oldTableLogicalTop += m_captions[i]->logicalHeight() + m_captions[i]->
marginBefore
() + m_captions[i]->marginAfter();
700
LayoutUnit captionLogicalHeight = m_captions[i]->logicalHeight() + m_captions[i]->
marginBefore
() + m_captions[i]->marginAfter();
[
all
...]
RenderBlock.h
342
LayoutUnit marginBeforeForChild(const RenderBoxModelObject* child) const { return child->
marginBefore
(style()); }
[
all
...]
RootInlineBox.cpp
[
all
...]
RenderInline.cpp
732
LayoutUnit RenderInline::
marginBefore
(const RenderStyle* otherStyle) const
[
all
...]
RenderBlock.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h
364
bool hasMarginBeforeQuirk() const { return
marginBefore
().quirk(); }
657
Length
marginBefore
() const { return surround->margin.before(writingMode()); }
[
all
...]
Completed in 1018 milliseconds