HomeSort by relevance Sort by last modified time
    Searched full:borderright (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/base/core/java/android/preference/
PreferenceFrameLayout.java 92 int borderRight = getPaddingRight();
103 borderRight -= mBorderRight;
113 borderRight += mBorderRight;
123 || previousLeft != borderLeft || previousRight != borderRight) {
124 setPadding(borderLeft, borderTop, borderRight, borderBottom);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.cpp 271 static bool getBordersFromFrameAttributeValue(const AtomicString& value, bool& borderTop, bool& borderRight, bool& borderBottom, bool& borderLeft)
274 borderRight = false;
285 borderLeft = borderRight = true;
289 borderRight = true;
291 borderTop = borderBottom = borderLeft = borderRight = true;
345 bool borderRight;
348 if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) {
353 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderRightStyle, borderRight ? CSSValueSolid : CSSValueHidden);
379 bool borderRight;
382 m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.h 114 virtual int borderRight() const { return style()->borderRightWidth(); }
120 int borderWidth() const { return borderLeft() + borderRight(); }
128 LayoutUnit borderAndPaddingWidth() const { return borderLeft() + borderRight() + paddingLeft() + paddingRight(); }
135 LayoutUnit borderLogicalRight() const { return style()->isHorizontalWritingMode() ? borderRight() : borderBottom(); }
RenderButton.cpp 117 return LayoutRect(additionalOffset.x() + borderLeft(), additionalOffset.y() + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
133 return marginRight() + borderRight() + paddingRight() + contentWidth();
RenderTreeAsText.cpp 250 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
263 if (o.style()->borderRight() != prevBorder) {
264 prevBorder = o.style()->borderRight();
265 if (!box.borderRight())
268 ts << " (" << box.borderRight() << "px ";
LayoutState.cpp 105 m_pageOffset = LayoutSize(m_layoutOffset.width() + (!isFlipped ? renderer.borderLeft() + renderer.paddingLeft() : renderer.borderRight() + renderer.paddingRight()),
RenderFileUploadControl.cpp 98 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight));
RenderListBox.cpp 390 scrollbarLeft = width() - borderRight() - (m_vBar ? m_vBar->width() : 0);
531 || offset.width() > width() - borderRight() - paddingRight() - leftScrollbarOffset)
778 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
    [all...]
RenderThemeChromiumDefault.cpp 359 extraParams.menuList.hasBorder = box->borderRight() || box->borderLeft() || box->borderTop() || box->borderBottom();
379 int spacingRight = box->borderRight() + box->paddingRight();
413 int spacingRight = box->borderRight() + box->paddingRight();
RenderFlexibleBox.cpp 136 return direction == HorizontalLine ? box->borderTop() + box->paddingTop() + box->contentHeight() : box->borderRight() + box->paddingRight() + box->contentWidth();
477 return isLeftToRightFlow() ? borderLeft() : borderRight();
484 return isLeftToRightFlow() ? borderRight() : borderLeft();
498 return borderRight();
512 return borderRight();
    [all...]
RenderMarquee.cpp 128 contentWidth += (paddingLeft() - borderRight());
RenderTable.h 67 virtual int borderRight() const OVERRIDE
RenderTableCell.h 116 virtual int borderRight() const OVERRIDE;
RenderWidget.cpp 222 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderLayerScrollableArea.cpp 787 borderBoxRect.width() - (box().borderLeft() + box().borderRight()) - scrollCorner.width(),
808 return maxX - box().borderRight() - m_vBar->width();
    [all...]
RenderTableCell.cpp     [all...]
RenderBoxModelObject.cpp 602 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), includeLeftEdge, includeRightEdge);
610 int bRight = includeRightEdge ? borderRight() : 0;
    [all...]
RenderReplaced.cpp 155 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderBox.cpp 338 return width() - borderLeft() - borderRight() - verticalScrollbarWidth();
    [all...]
RenderObject.cpp     [all...]
RenderTable.cpp 612 int rightBorderOverflow = width() + outerBorderRight() - borderRight();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 181 case RightToLeftWritingMode: return renderer.borderRight();
194 case RightToLeftWritingMode: return renderer.borderRight() + renderer.paddingRight();
221 return renderer.borderRight();
235 return renderer.borderRight() + renderer.paddingRight();
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp 253 || (cell->borderLeft() > 0 && cell->borderRight() > 0))
264 if (cell->borderRight() > 0)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 187 paddingBox.width() + renderBox->borderLeft() + renderBox->borderRight(), paddingBox.height() + renderBox->borderTop() + renderBox->borderBottom());
196 borderBox.width() - renderInline->borderLeft() - renderInline->borderRight(), borderBox.height() - renderInline->borderTop() - renderInline->borderBottom());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]

Completed in 3851 milliseconds

1 2