OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:marginbefore
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.h
51
virtual LayoutUnit
marginBefore
(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
RenderBox.cpp
242
if (isOutOfFlowPositioned() && newStyle->hasStaticBlockPosition(isHorizontalWritingMode()) && oldStyle->
marginBefore
() != newStyle->
marginBefore
()
[
all
...]
RenderBlockFlow.h
305
return std::max<LayoutUnit>(block->
marginBefore
(), 0);
309
return std::max<LayoutUnit>(-block->
marginBefore
(), 0);
RenderBoxModelObject.h
149
virtual LayoutUnit
marginBefore
(const RenderStyle* otherStyle = 0) const = 0;
155
LayoutUnit marginLogicalHeight() const { return
marginBefore
() + marginAfter(); }
RenderBox.h
271
virtual LayoutUnit
marginBefore
(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL { return m_marginBox.before((overrideStyle ? overrideStyle : style())->writingMode()); }
304
virtual LayoutUnit collapsedMarginBefore() const { return
marginBefore
(); }
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
304
LayoutUnit marginBeforeForChild(const RenderBoxModelObject* child) const { return child->
marginBefore
(style()); }
[
all
...]
RootInlineBox.cpp
[
all
...]
RenderBlockFlow.cpp
[
all
...]
RenderInline.cpp
734
LayoutUnit RenderInline::
marginBefore
(const RenderStyle* otherStyle) const
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeInfo.h
137
return -m_renderer->
marginBefore
();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h
385
bool hasMarginBeforeQuirk() const { return
marginBefore
().quirk(); }
[
all
...]
Completed in 180 milliseconds