OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:borderEnd
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.h
56
int
borderEnd
() const { return m_borderEnd; }
63
return style()->isLeftToRightDirection() ? borderStart() :
borderEnd
();
70
return style()->isLeftToRightDirection() ?
borderEnd
() : borderStart();
78
return style()->isLeftToRightDirection() ? borderStart() :
borderEnd
();
85
return style()->isLeftToRightDirection() ?
borderEnd
() : borderStart();
204
return borderStart() +
borderEnd
() + (collapseBorders() ? LayoutUnit() : (paddingStart() + paddingEnd() + borderSpacingInRowDirection()));
RenderBoxModelObject.h
122
virtual int
borderEnd
() const { return style()->borderEndWidth(); }
131
LayoutUnit borderAndPaddingLogicalWidth() const { return borderStart() +
borderEnd
() + paddingStart() + paddingEnd(); }
137
LayoutUnit borderLogicalWidth() const { return borderStart() +
borderEnd
(); }
159
bool hasInlineDirectionBordersOrPadding() const { return borderStart() ||
borderEnd
() || paddingStart()|| paddingEnd(); }
RenderTableCell.cpp
621
CollapsedBorderValue result = CollapsedBorderValue(style()->
borderEnd
(), includeColor ? resolveColor(endColorProperty) : Color(), BCELL);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp
[
all
...]
Completed in 68 milliseconds