/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLTableElement.cpp | 253 …(const AtomicString& value, bool& borderTop, bool& borderRight, bool& borderBottom, bool& borderLe… in getBordersFromFrameAttributeValue() argument 257 borderBottom = false; in getBordersFromFrameAttributeValue() 263 borderBottom = true; in getBordersFromFrameAttributeValue() 265 borderTop = borderBottom = true; in getBordersFromFrameAttributeValue() 273 borderTop = borderBottom = borderLeft = borderRight = true; in getBordersFromFrameAttributeValue() 328 bool borderBottom; in collectStyleForPresentationAttribute() local 330 … if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) { in collectStyleForPresentationAttribute() 333 …ertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomStyle, borderBottom ? CSSValueSolid… in collectStyleForPresentationAttribute() 362 bool borderBottom; in parseAttribute() local 364 …m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borde… in parseAttribute()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderBoxModelObject.h | 106 virtual int borderBottom() const { return style()->borderBottomWidth(); } in borderBottom() function 115 int borderHeight() const { return borderTop() + borderBottom(); } in borderHeight() 121 …LayoutUnit borderAndPaddingHeight() const { return borderTop() + borderBottom() + paddingTop() + p… in borderAndPaddingHeight() 129 …ogicalRight() const { return style()->isHorizontalWritingMode() ? borderRight() : borderBottom(); } in borderLogicalRight()
|
D | RenderTreeAsText.cpp | 255 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) { in writeRenderObject() 278 if (o.style()->borderBottom() != prevBorder) { in writeRenderObject() 279 prevBorder = box.style()->borderBottom(); in writeRenderObject() 280 if (!box.borderBottom()) in writeRenderObject() 283 ts << " (" << box.borderBottom() << "px "; in writeRenderObject()
|
D | RenderButton.cpp | 90 …() + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom()); in controlClipRect()
|
D | RenderThemeChromiumDefault.cpp | 351 …ist.hasBorder = box->borderRight() || box->borderLeft() || box->borderTop() || box->borderBottom(); in paintMenuList() 370 int spacingBottom = box->borderBottom() + box->paddingBottom(); in paintMenuList() 404 int spacingBottom = box->borderBottom() + box->paddingBottom(); in paintMenuListButton()
|
D | RenderLayerScrollableArea.cpp | 206 …scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->he… in invalidateScrollbarRect() 795 borderBoxRect.maxY() - box().borderBottom() - m_hBar->height(), in rectForHorizontalScrollbar() 810 … borderBoxRect.height() - (box().borderTop() + box().borderBottom()) - scrollCorner.height()); in rectForVerticalScrollbar() 834 …return IntSize(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->hei… in scrollbarOffset() 1100 …box().height() - (box().borderTop() + box().borderBottom()) - (m_hBar ? m_hBar->height() : resizeC… in hitTestOverflowControls() 1110 box().height() - box().borderBottom() - m_hBar->height(), in hitTestOverflowControls()
|
D | LayoutState.cpp | 77 …(!isFlipped ? renderer.borderTop() + renderer.paddingTop() : renderer.borderBottom() + renderer.pa… in LayoutState()
|
D | RenderFileUploadControl.cpp | 99 …width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeig… in paintObject()
|
D | RenderWidget.cpp | 228 …paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddin… in paint()
|
D | RenderTableCell.h | 118 virtual int borderBottom() const OVERRIDE;
|
D | RenderFlexibleBox.cpp | 449 return isLeftToRightFlow() ? borderTop() : borderBottom(); in flowAwareBorderStart() 456 return isLeftToRightFlow() ? borderBottom() : borderTop(); in flowAwareBorderEnd() 465 return borderBottom(); in flowAwareBorderBefore() 479 return borderBottom(); in flowAwareBorderAfter()
|
D | RenderTable.h | 81 virtual int borderBottom() const OVERRIDE in borderBottom() function
|
D | RenderTableCell.cpp | 901 int RenderTableCell::borderBottom() const in borderBottom() function in blink::RenderTableCell 903 return table()->collapseBorders() ? borderHalfBottom(false) : RenderBlockFlow::borderBottom(); in borderBottom() 1184 width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom()); in paintBackgroundsBehindCell()
|
D | RenderDeprecatedFlexibleBox.cpp | 328 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight(); in layoutHorizontalBox() 619 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight(); in layoutVerticalBox()
|
D | RenderReplaced.cpp | 155 …paddingTop() + borderTop(), paddingBottom() + borderBottom(), paddingLeft() + borderLeft(), paddin… in paint()
|
D | RenderBox.cpp | 326 return height() - borderTop() - borderBottom() - horizontalScrollbarHeight(); in clientHeight() 1424 ….setSize(clipRect.size() - LayoutSize(borderLeft() + borderRight(), borderTop() + borderBottom())); in overflowClipRect() 2939 …child->isHorizontalWritingMode() ? containerBlock->borderRight() : containerBlock->borderBottom()); in computeLogicalLeftPositionedOffset() 3255 logicalTopPos += containerBlock->borderBottom(); in computeLogicalTopPositionedOffset() 3932 …LayoutUnit borderHeight = std::max<LayoutUnit>(borderBottom(), std::max(borderBottomLeftRadiusHeig… in incrementallyInvalidatePaint() 4327 LayoutUnit bottom = borderBottom(); in noOverflowRect()
|
D | RenderTable.cpp | 598 int bottomBorderOverflow = height() + outerBorderBottom() - borderBottom(); in addOverflowFromChildren()
|
D | RenderBlock.cpp | 3793 …return box->lineBottom() + (includeBottom ? (block->borderBottom() + block->paddingBottom()) : Lay… in getHeightForLineCount() 3801 …return result + obj->y() + (includeBottom ? (block->borderBottom() + block->paddingBottom()) : Lay… in getHeightForLineCount()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | ShapeOutsideInfo.cpp | 183 case BottomToTopWritingMode: return renderer.borderBottom(); in borderBeforeInWritingMode() 196 case BottomToTopWritingMode: return renderer.borderBottom() + renderer.paddingBottom(); in borderAndPaddingBeforeInWritingMode() 230 return renderer.borderBottom(); in borderStartWithStyleForWritingMode() 244 return renderer.borderBottom() + renderer.paddingBottom(); in borderAndPaddingStartWithStyleForWritingMode()
|
/external/doclava/res/assets/templates/components/ |
D | left_nav.cs | 63 $("#swapper").css({borderBottom:"2px solid #aaa"});
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
D | AXTable.cpp | 249 if ((cell->borderTop() > 0 && cell->borderBottom() > 0) in isDataTable() 257 if (cell->borderBottom() > 0) in isDataTable()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | RenderStyle.cpp | 1498 return borderBottom(); in borderBefore() 1512 return borderBottom(); in borderAfter() 1521 return borderBottom(); in borderAfter() 1528 return isLeftToRightDirection() ? borderTop() : borderBottom(); in borderStart() 1535 return isLeftToRightDirection() ? borderBottom() : borderTop(); in borderEnd()
|
D | RenderStyle.h | 480 const BorderValue& borderBottom() const { return surround->border.bottom(); } in borderBottom() function
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorOverlay.cpp | 276 …enderBox->borderRight(), paddingBox.height() + renderBox->borderTop() + renderBox->borderBottom()); in buildNodeQuads() 285 …ine->borderRight(), borderBox.height() - renderInline->borderTop() - renderInline->borderBottom()); in buildNodeQuads()
|
/external/chromium_org/third_party/WebKit/Source/core/paint/ |
D | BoxPainter.cpp | 356 obj.paddingTop() + obj.borderTop(), obj.paddingBottom() + obj.borderBottom(), in paintFillLayerExtended() 381 …olledPaintRect.setHeight(thisBox->borderTop() + thisBox->scrollHeight() + thisBox->borderBottom()); in paintFillLayerExtended() 398 …scrolledPaintRect.height() - obj.borderTop() - obj.borderBottom() - (includePadding ? obj.paddingT… in paintFillLayerExtended() 653 bottom = obj.borderBottom(); in calculateBackgroundImageGeometry()
|