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

1 2

  /frameworks/base/core/java/android/preference/
PreferenceFrameLayout.java 90 int borderBottom = getPaddingBottom();
101 borderBottom -= mBorderBottom;
111 borderBottom += mBorderBottom;
122 if (previousTop != borderTop || previousBottom != borderBottom
124 setPadding(borderLeft, borderTop, borderRight, borderBottom);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.h 106 virtual int borderBottom() const { return style()->borderBottomWidth(); }
115 int borderHeight() const { return borderTop() + borderBottom(); }
121 LayoutUnit borderAndPaddingHeight() const { return borderTop() + borderBottom() + paddingTop() + paddingBottom(); }
129 LayoutUnit borderLogicalRight() const { return style()->isHorizontalWritingMode() ? borderRight() : borderBottom(); }
RenderButton.cpp 90 return LayoutRect(additionalOffset.x() + borderLeft(), additionalOffset.y() + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
LayoutState.cpp 77 m_layoutOffset.height() + (!isFlipped ? renderer.borderTop() + renderer.paddingTop() : renderer.borderBottom() + renderer.paddingBottom()));
RenderTreeAsText.cpp 255 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
278 if (o.style()->borderBottom() != prevBorder) {
279 prevBorder = box.style()->borderBottom();
280 if (!box.borderBottom())
283 ts << " (" << box.borderBottom() << "px ";
RenderThemeChromiumDefault.cpp 351 extraParams.menuList.hasBorder = box->borderRight() || box->borderLeft() || box->borderTop() || box->borderBottom();
370 int spacingBottom = box->borderBottom() + box->paddingBottom();
404 int spacingBottom = box->borderBottom() + box->paddingBottom();
RenderLayerScrollableArea.cpp 206 scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
795 borderBoxRect.maxY() - box().borderBottom() - m_hBar->height(),
810 borderBoxRect.height() - (box().borderTop() + box().borderBottom()) - scrollCorner.height());
834 return IntSize(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
    [all...]
RenderFileUploadControl.cpp 99 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight));
RenderTableCell.h 118 virtual int borderBottom() const OVERRIDE;
RenderWidget.cpp 228 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderTable.h 81 virtual int borderBottom() const OVERRIDE
RenderTableCell.cpp     [all...]
RenderFlexibleBox.cpp 449 return isLeftToRightFlow() ? borderTop() : borderBottom();
456 return isLeftToRightFlow() ? borderBottom() : borderTop();
465 return borderBottom();
479 return borderBottom();
    [all...]
RenderDeprecatedFlexibleBox.cpp 328 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
619 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
    [all...]
RenderReplaced.cpp 155 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderBox.cpp 326 return height() - borderTop() - borderBottom() - horizontalScrollbarHeight();
    [all...]
RenderTable.cpp 598 int bottomBorderOverflow = height() + outerBorderBottom() - borderBottom();
    [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.cpp 253 static bool getBordersFromFrameAttributeValue(const AtomicString& value, bool& borderTop, bool& borderRight, bool& borderBottom, bool& borderLeft)
257 borderBottom = false;
263 borderBottom = true;
265 borderTop = borderBottom = true;
273 borderTop = borderBottom = borderLeft = borderRight = true;
328 bool borderBottom;
330 if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) {
333 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomStyle, borderBottom ? CSSValueSolid : CSSValueHidden);
362 bool borderBottom;
364 m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 183 case BottomToTopWritingMode: return renderer.borderBottom();
196 case BottomToTopWritingMode: return renderer.borderBottom() + renderer.paddingBottom();
230 return renderer.borderBottom();
244 return renderer.borderBottom() + renderer.paddingBottom();
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp 249 if ((cell->borderTop() > 0 && cell->borderBottom() > 0)
257 if (cell->borderBottom() > 0)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]
  /build/tools/droiddoc/templates-pdk/
customizations.cs 105 $("#swapper").css({borderBottom:"2px solid #aaa"});
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 276 paddingBox.width() + renderBox->borderLeft() + renderBox->borderRight(), paddingBox.height() + renderBox->borderTop() + renderBox->borderBottom());
285 borderBox.width() - renderInline->borderLeft() - renderInline->borderRight(), borderBox.height() - renderInline->borderTop() - renderInline->borderBottom());
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp 356 obj.paddingTop() + obj.borderTop(), obj.paddingBottom() + obj.borderBottom(),
381 scrolledPaintRect.setHeight(thisBox->borderTop() + thisBox->scrollHeight() + thisBox->borderBottom());
398 scrolledPaintRect.height() - obj.borderTop() - obj.borderBottom() - (includePadding ? obj.paddingTop() + obj.paddingBottom() : LayoutUnit()));
653 bottom = obj.borderBottom();
    [all...]

Completed in 550 milliseconds

1 2