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 112 setLogicalHeight(childFrameView->contentsHeight() + borderTop() + borderBottom() + paddingTop() + paddingBottom());
RenderButton.cpp 113 return LayoutRect(additionalOffset.x() + borderLeft(), additionalOffset.y() + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderBoxModelObject.h 116 virtual int borderBottom() const { return style()->borderBottomWidth(); }
128 LayoutUnit borderAndPaddingHeight() const { return borderTop() + borderBottom() + paddingTop() + paddingBottom(); }
136 LayoutUnit borderLogicalRight() const { return style()->isHorizontalWritingMode() ? borderRight() : borderBottom(); }
RenderThemeChromiumWin.cpp 356 int borderBottom = box->borderBottom();
363 bool drawEdges = !(!borderRight && !borderLeft && !borderTop && !borderBottom);
382 int spacingBottom = box->borderBottom() + box->paddingBottom();
RenderTreeAsText.cpp 251 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
276 if (o.style()->borderBottom() != prevBorder) {
277 prevBorder = box.style()->borderBottom();
278 if (!box.borderBottom())
281 ts << " (" << box.borderBottom() << "px ";
    [all...]
RenderThemeChromiumDefault.cpp 356 extraParams.menuList.hasBorder = box->borderRight() || box->borderLeft() || box->borderTop() || box->borderBottom();
375 int spacingBottom = box->borderBottom() + box->paddingBottom();
409 int spacingBottom = box->borderBottom() + box->paddingBottom();
RenderLayerScrollableArea.cpp 193 scrollRect.move(horizontalScrollbarStart(0), m_box->height() - m_box->borderBottom() - scrollbar->height());
707 borderBoxRect.maxY() - m_box->borderBottom() - m_hBar->height(),
722 borderBoxRect.height() - (m_box->borderTop() + m_box->borderBottom()) - scrollCorner.height());
746 return IntSize(horizontalScrollbarStart(0), m_box->height() - m_box->borderBottom() - scrollbar->height());
    [all...]
LayoutState.cpp 89 m_layoutOffset.height() + (!isFlipped ? renderer->borderTop() + renderer->paddingTop() : renderer->borderBottom() + renderer->paddingBottom()));
RenderFileUploadControl.cpp 98 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight));
RenderListBox.cpp 366 height() - (borderTop() + borderBottom()));
476 height() - borderTop() - borderBottom());
490 if (offset.height() < borderTop() + paddingTop() || offset.height() > height() - paddingBottom() - borderBottom())
562 if (positionOffset.height() > height() - paddingBottom() - borderBottom() && scrollToRevealElementAtListIndex(offset + rows))
RenderTable.h 81 int borderBottom() const
RenderTableCell.h 114 virtual int borderBottom() const;
RenderFlexibleBox.cpp 469 return isLeftToRightFlow() ? borderTop() : borderBottom();
476 return isLeftToRightFlow() ? borderBottom() : borderTop();
485 return borderBottom();
499 return borderBottom();
    [all...]
RenderWidget.cpp 293 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderTableCell.cpp     [all...]
RenderDeprecatedFlexibleBox.cpp 344 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
635 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
    [all...]
RenderReplaced.cpp 156 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), true, true);
RenderBox.cpp 395 return height() - borderTop() - borderBottom() - horizontalScrollbarHeight();
    [all...]
RenderBoxModelObject.cpp 600 paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddingRight() + borderRight(), includeLeftEdge, includeRightEdge);
623 scrolledPaintRect.setHeight(borderTop() + thisBox->scrollHeight() + borderBottom());
640 scrolledPaintRect.height() - borderTop() - borderBottom() - (includePadding ? paddingTop() + paddingBottom() : LayoutUnit()));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.cpp 279 static bool getBordersFromFrameAttributeValue(const AtomicString& value, bool& borderTop, bool& borderRight, bool& borderBottom, bool& borderLeft)
283 borderBottom = false;
289 borderBottom = true;
291 borderTop = borderBottom = true;
299 borderTop = borderBottom = borderLeft = borderRight = true;
349 bool borderBottom;
351 if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) {
354 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomStyle, borderBottom ? CSSValueSolid : CSSValueHidden);
383 bool borderBottom;
385 m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp 210 if ((cell->borderTop() > 0 && cell->borderBottom() > 0)
218 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 183 paddingBox.width() + renderBox->borderLeft() + renderBox->borderRight(), paddingBox.height() + renderBox->borderTop() + renderBox->borderBottom());
192 borderBox.width() - renderInline->borderLeft() - renderInline->borderRight(), borderBox.height() - renderInline->borderTop() - renderInline->borderBottom());

Completed in 171 milliseconds

1 2