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

1 2

  /external/webkit/WebCore/rendering/
RenderApplet.cpp 64 height() - borderTop() - borderBottom() - paddingTop() - paddingBottom();
RenderPartObject.cpp 62 int extraHeight = paddingTop() + paddingBottom() + borderTop() + borderBottom();
201 int extraHeight = paddingTop() + paddingBottom() + borderTop() + borderBottom();
RenderTableCell.cpp 461 result = compareBorders(CollapsedBorderValue(&prevCell->style()->borderBottom(), BCELL), result);
480 result = compareBorders(CollapsedBorderValue(&prevRow->style()->borderBottom(), BROW), result);
497 result = compareBorders(CollapsedBorderValue(&currSection->style()->borderBottom(), BROWGROUP), result);
530 CollapsedBorderValue result = CollapsedBorderValue(&style()->borderBottom(), BCELL);
541 result = compareBorders(result, CollapsedBorderValue(&parent()->style()->borderBottom(), BROW));
556 result = compareBorders(result, CollapsedBorderValue(&currSection->style()->borderBottom(), BROWGROUP));
573 result = compareBorders(result, CollapsedBorderValue(&colElt->style()->borderBottom(), BCOL));
576 result = compareBorders(result, CollapsedBorderValue(&colElt->parent()->style()->borderBottom(), BCOLGROUP));
583 result = compareBorders(result, CollapsedBorderValue(&table()->style()->borderBottom(), BTABLE));
606 int RenderTableCell::borderBottom() cons
    [all...]
RenderBoxModelObject.h 74 virtual int borderBottom() const { return style()->borderBottomWidth(); }
RenderTableCell.h 70 int borderBottom() const;
RenderListBox.cpp 224 int toAdd = paddingTop() + paddingBottom() + borderTop() + borderBottom();
288 height() - (borderTop() + borderBottom()));
377 height() - borderTop() - borderBottom());
391 if (offsetY < borderTop() + paddingTop() || offsetY > height() - paddingBottom() - borderBottom())
461 if (offsetY > height() - paddingBottom() - borderBottom() && scrollToRevealElementAtListIndex(offset + rows))
RenderTreeAsText.cpp 260 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
292 if (o.style()->borderBottom() != prevBorder) {
293 prevBorder = box.style()->borderBottom();
294 if (!box.borderBottom())
297 ts << " (" << box.borderBottom() << "px ";
RenderBox.cpp 262 return height() - borderTop() - borderBottom() - horizontalScrollbarHeight();
515 int bordersPlusPadding = borderTop() + borderBottom() + paddingTop() + paddingBottom();
531 height -= (borderTop() + borderBottom() + paddingTop() + paddingBottom());
610 int bh = max(h + marginTop() + marginBottom() + borderTop() + borderBottom(), rh);
810 max(layerRenderer->height() + layerRenderer->marginTop() + layerRenderer->marginBottom() + layerRenderer->borderTop() + layerRenderer->borderBottom(), rh));
910 int clipHeight = height() - bTop - borderBottom();
    [all...]
RenderButton.cpp 183 return IntRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderScrollbarPart.cpp 102 int visibleSize = m_scrollbar->owningRenderer()->height() - m_scrollbar->owningRenderer()->borderTop() - m_scrollbar->owningRenderer()->borderBottom();
RenderTable.h 51 int borderBottom() const;
RenderThemeChromiumWin.cpp 430 int borderBottom = box->borderBottom();
437 bool drawEdges = !(borderRight == 0 && borderLeft == 0 && borderTop == 0 && borderBottom == 0);
448 int spacingBottom = borderBottom + box->paddingBottom();
RenderTextControl.cpp 154 return height() - paddingTop() - paddingBottom() - borderTop() - borderBottom();
426 setHeight(m_innerText->renderBox()->borderTop() + m_innerText->renderBox()->borderBottom() +
431 setHeight(height() + paddingTop() + paddingBottom() + borderTop() + borderBottom());
RenderTableSection.cpp 392 cell->borderTop() + cell->borderBottom()));
652 cell->borderBottom() - cell->paddingBottom()));
859 const BorderValue& sb = style()->borderBottom();
865 const BorderValue& rb = lastChild()->style()->borderBottom();
876 const BorderValue& cb = current.cell->style()->borderBottom();
880 const BorderValue& gb = colGroup->style()->borderBottom();
    [all...]
InlineBox.cpp 105 result += flowObject->borderTop() + flowObject->paddingTop() + flowObject->borderBottom() + flowObject->paddingBottom();
InlineFlowBox.h 105 int borderBottom() const { return renderer()->style()->borderBottomWidth(); }
RenderTable.cpp 380 int bpBottom = borderBottom() + (collapsing ? 0 : paddingBottom());
447 int bottomBorderOverflow = height() + (collapsing ? outerBorderBottom() - borderBottom() : 0);
894 int RenderTable::borderBottom() const
898 return RenderBlock::borderBottom();
    [all...]
RenderBoxModelObject.cpp 484 h = borderTop() + layer()->scrollHeight() + borderBottom();
493 int height = h - borderTop() - borderBottom() - (includePadding ? paddingTop() + paddingBottom() : 0);
709 bottom = borderBottom();
    [all...]
RenderFileUploadControl.cpp 190 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight);
RenderWidget.cpp 319 int h = height() - borderTop() - borderBottom() - paddingTop() - paddingBottom();
RenderFlexibleBox.cpp 335 int toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
648 int toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
    [all...]
  /external/webkit/WebCore/editing/
DeleteButtonController.cpp 119 unsigned visibleBorders = style->borderTop().isVisible() + style->borderBottom().isVisible() + style->borderLeft().isVisible() + style->borderRight().isVisible();
215 style->setProperty(CSSPropertyBottom, String::number(-borderWidth - m_target->renderBox()->borderBottom()) + "px");
  /external/webkit/WebCore/bindings/objc/
DOMCSS.h 82 - (NSString *)borderBottom;
83 - (void)setBorderBottom:(NSString *)borderBottom;
DOMCSS.mm 270 - (NSString *)borderBottom
275 - (void)setBorderBottom:(NSString *)borderBottom
277 [self setProperty:@"border-bottom" value:borderBottom priority:@""];
  /external/webkit/WebCore/accessibility/
AccessibilityTable.cpp 161 if ((cell->borderTop() > 0 && cell->borderBottom() > 0)

Completed in 814 milliseconds

1 2