HomeSort by relevance Sort by last modified time
    Searched refs:borderRight (Results 1 - 25 of 41) sorted by null

1 2

  /frameworks/base/core/java/android/preference/
PreferenceFrameLayout.java 88 int borderRight = getPaddingRight();
99 borderRight -= mBorderRight;
109 borderRight += mBorderRight;
119 || previousLeft != borderLeft || previousRight != borderRight) {
120 setPadding(borderLeft, borderTop, borderRight, borderBottom);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderButton.cpp 114 return LayoutRect(additionalOffset.x() + borderLeft(), additionalOffset.y() + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
130 return marginRight() + borderRight() + paddingRight() + contentWidth();
RenderListBox.cpp 356 IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + width() - borderRight() - m_vBar->width(),
466 LayoutRect vertRect(accumulatedOffset.x() + width() - borderRight() - m_vBar->width(),
487 if (offset.width() < borderLeft() + paddingLeft() || offset.width() > width() - borderRight() - paddingRight() - scrollbarWidth)
736 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
748 int scrollbarLeft = width() - borderRight() - scrollbar->width();
763 int scrollbarLeft = width() - borderRight() - scrollbar->width();
777 int scrollbarLeft = width() - borderRight() - scrollbar->width();
792 int scrollbarLeft = width() - borderRight() - scrollbar->width();
RenderBoxModelObject.h 117 virtual int borderRight() const { return style()->borderRightWidth(); }
128 LayoutUnit borderAndPaddingWidth() const { return borderLeft() + borderRight() + paddingLeft() + paddingRight(); }
135 LayoutUnit borderLogicalRight() const { return style()->isHorizontalWritingMode() ? borderRight() : borderBottom(); }
RenderThemeChromiumWin.cpp 354 int borderRight = box->borderRight();
364 bool drawEdges = !(!borderRight && !borderLeft && !borderTop && !borderBottom);
381 int spacingRight = box->borderRight() + box->paddingRight();
RenderTreeAsText.cpp 285 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
298 if (o.style()->borderRight() != prevBorder) {
299 prevBorder = o.style()->borderRight();
300 if (!box.borderRight())
303 ts << " (" << box.borderRight() << "px ";
LayoutState.cpp 89 m_pageOffset = LayoutSize(m_layoutOffset.width() + (!isFlipped ? renderer->borderLeft() + renderer->paddingLeft() : renderer->borderRight() + renderer->paddingRight()),
RenderFileUploadControl.cpp 103 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight));
RenderMarquee.cpp 130 contentWidth += (paddingLeft() - borderRight());
RenderTable.h 67 int borderRight() const
RenderTableCell.h 109 virtual int borderRight() const;
RenderFlexibleBox.cpp 149 return direction == HorizontalLine ? box->borderTop() + box->paddingTop() + box->contentHeight() : box->borderRight() + box->paddingRight() + box->contentWidth();
484 return isLeftToRightFlow() ? borderLeft() : borderRight();
491 return isLeftToRightFlow() ? borderRight() : borderLeft();
505 return borderRight();
519 return borderRight();
    [all...]
RenderWidget.cpp 289 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderTableCell.cpp     [all...]
RenderBox.cpp 410 return width() - borderLeft() - borderRight() - verticalScrollbarWidth();
473 LayoutUnit borderRight = style->borderRight().nonZero() ? style->borderRight().width() : 0;
475 return width + borderLeft + borderRight + style->paddingLeft().value() + style->paddingRight().value();
    [all...]
RenderReplaced.cpp 149 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderThemeChromiumDefault.cpp 317 extraParams.menuList.hasBorder = box->borderRight() || box->borderLeft() || box->borderTop() || box->borderBottom();
RenderBoxModelObject.cpp 604 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), includeLeftEdge, includeRightEdge);
612 int bRight = includeRightEdge ? borderRight() : 0;
    [all...]
RenderView.cpp 192 seamlessAncestor->borderRight() + seamlessAncestor->paddingRight()),
    [all...]
RenderTable.cpp 603 int rightBorderOverflow = width() + outerBorderRight() - borderRight();
    [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.cpp 278 static bool getBordersFromFrameAttributeValue(const AtomicString& value, bool& borderTop, bool& borderRight, bool& borderBottom, bool& borderLeft)
281 borderRight = false;
292 borderLeft = borderRight = true;
296 borderRight = true;
298 borderTop = borderBottom = borderLeft = borderRight = true;
347 bool borderRight;
350 if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) {
355 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderRightStyle, borderRight ? CSSValueSolid : CSSValueHidden);
381 bool borderRight;
384 m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTable.cpp 210 || (cell->borderLeft() > 0 && cell->borderRight() > 0))
221 if (cell->borderRight() > 0)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 178 paddingBox.width() + renderBox->borderLeft() + renderBox->borderRight(), paddingBox.height() + renderBox->borderTop() + renderBox->borderBottom());
187 borderBox.width() - renderInline->borderLeft() - renderInline->borderRight(), borderBox.height() - renderInline->borderTop() - renderInline->borderBottom());

Completed in 1345 milliseconds

1 2