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

1 2

  /frameworks/base/core/java/android/preference/
PreferenceFrameLayout.java 86 int borderBottom = getPaddingBottom();
97 borderBottom -= mBorderBottom;
107 borderBottom += mBorderBottom;
118 if (previousTop != borderTop || previousBottom != borderBottom
120 setPadding(borderLeft, borderTop, borderRight, borderBottom);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderIFrame.cpp 111 setLogicalHeight(childFrameView->contentsHeight() + borderTop() + borderBottom() + paddingTop() + paddingBottom());
RenderButton.cpp 114 return LayoutRect(additionalOffset.x() + borderLeft(), additionalOffset.y() + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderBoxModelObject.h 115 virtual int borderBottom() const { return style()->borderBottomWidth(); }
127 LayoutUnit borderAndPaddingHeight() const { return borderTop() + borderBottom() + paddingTop() + paddingBottom(); }
135 LayoutUnit borderLogicalRight() const { return style()->isHorizontalWritingMode() ? borderRight() : borderBottom(); }
RenderThemeChromiumWin.cpp 357 int borderBottom = box->borderBottom();
364 bool drawEdges = !(!borderRight && !borderLeft && !borderTop && !borderBottom);
383 int spacingBottom = box->borderBottom() + box->paddingBottom();
RenderTreeAsText.cpp 285 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
310 if (o.style()->borderBottom() != prevBorder) {
311 prevBorder = box.style()->borderBottom();
312 if (!box.borderBottom())
315 ts << " (" << box.borderBottom() << "px ";
LayoutState.cpp 90 m_layoutOffset.height() + (!isFlipped ? renderer->borderTop() + renderer->paddingTop() : renderer->borderBottom() + renderer->paddingBottom()));
RenderFileUploadControl.cpp 103 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight));
RenderListBox.cpp 359 height() - (borderTop() + borderBottom()));
469 height() - borderTop() - borderBottom());
483 if (offset.height() < borderTop() + paddingTop() || offset.height() > height() - paddingBottom() - borderBottom())
552 if (positionOffset.height() > height() - paddingBottom() - borderBottom() && scrollToRevealElementAtListIndex(offset + rows))
RenderTable.h 81 int borderBottom() const
RenderTableCell.h 111 virtual int borderBottom() const;
RenderFlexibleBox.cpp 485 return isLeftToRightFlow() ? borderTop() : borderBottom();
492 return isLeftToRightFlow() ? borderBottom() : borderTop();
501 return borderBottom();
515 return borderBottom();
    [all...]
RenderWidget.cpp 289 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderTableCell.cpp     [all...]
RenderDeprecatedFlexibleBox.cpp 364 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
654 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
    [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();
RenderBox.cpp 415 return height() - borderTop() - borderBottom() - horizontalScrollbarHeight();
    [all...]
RenderBoxModelObject.cpp 604 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), includeLeftEdge, includeRightEdge);
627 scrolledPaintRect.setHeight(borderTop() + layer()->scrollHeight() + borderBottom());
644 scrolledPaintRect.height() - borderTop() - borderBottom() - (includePadding ? paddingTop() + paddingBottom() : LayoutUnit()));
    [all...]
RenderView.cpp 194 seamlessAncestor->borderBottom() + seamlessAncestor->paddingBottom()));
    [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)
282 borderBottom = false;
288 borderBottom = true;
290 borderTop = borderBottom = true;
298 borderTop = borderBottom = borderLeft = borderRight = true;
348 bool borderBottom;
350 if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) {
353 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomStyle, borderBottom ? CSSValueSolid : CSSValueHidden);
382 bool borderBottom;
384 m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTable.cpp 209 if ((cell->borderTop() > 0 && cell->borderBottom() > 0)
217 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 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 940 milliseconds

1 2