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

1 2 3

  /external/webkit/WebCore/rendering/
RenderBoxModelObject.h 75 virtual int borderLeft() const { return style()->borderLeftWidth(); }
84 bool hasHorizontalBordersOrPadding() const { return borderLeft() != 0 || borderRight() != 0 || paddingLeft() != 0 || paddingRight() != 0; }
RenderApplet.cpp 62 width() - borderLeft() - borderRight() - paddingLeft() - paddingRight();
RenderTableCell.cpp 101 w = Length(max(0, w.value() - borderLeft() - borderRight() - paddingLeft() - paddingRight()), Fixed);
331 CollapsedBorderValue result(&style()->borderLeft(), BCELL);
341 result = compareBorders(result, CollapsedBorderValue(&parent()->style()->borderLeft(), BROW));
346 result = compareBorders(result, CollapsedBorderValue(&section()->style()->borderLeft(), BROWGROUP));
356 result = compareBorders(result, CollapsedBorderValue(&colElt->style()->borderLeft(), BCOL));
360 result = compareBorders(result, CollapsedBorderValue(&colElt->parent()->style()->borderLeft(), BCOLGROUP));
376 result = compareBorders(result, CollapsedBorderValue(&tableElt->style()->borderLeft(), BTABLE));
403 result = rtl ? compareBorders(CollapsedBorderValue(&nextCell->style()->borderLeft(), BCELL), result) : compareBorders(result, CollapsedBorderValue(&nextCell->style()->borderLeft(), BCELL));
438 result = rtl ? compareBorders(CollapsedBorderValue(&colElt->style()->borderLeft(), BCOL), result) : compareBorders(result, CollapsedBorderValue(&colElt->style()->borderLeft(), BC (…)
    [all...]
RenderButton.cpp 183 return IntRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderPartObject.cpp 61 int extraWidth = paddingLeft() + paddingRight() + borderLeft() + borderRight();
163 int extraWidth = paddingLeft() + paddingRight() + borderLeft() + borderRight();
RenderTable.h 48 int borderLeft() const { return m_borderLeft; }
111 return borderLeft() + borderRight() +
RenderFileUploadControl.cpp 189 IntRect clipRect(tx + borderLeft(), ty + borderTop(),
190 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight);
204 int contentLeft = tx + borderLeft() + paddingLeft();
275 int toAdd = paddingLeft() + paddingRight() + borderLeft() + borderRight();
RenderFlexibleBox.cpp 198 int toAdd = borderLeft() + borderRight() + paddingLeft() + paddingRight();
337 int xPos = borderLeft() + paddingLeft();
360 xPos = borderLeft() + paddingLeft();
479 remainingSpace = borderLeft() + paddingLeft() + contentWidth() - xPos;
644 int xPos = borderLeft() + paddingLeft();
787 child->layer()->setStaticX(borderLeft()+paddingLeft());
    [all...]
RenderBox.cpp 257 return width() - borderLeft() - borderRight() - verticalScrollbarWidth();
271 return max(clientWidth(), rightmostPosition(true, false) - borderLeft());
272 return clientWidth() - min(0, leftmostPosition(true, false) - borderLeft());
507 int bordersPlusPadding = borderLeft() + borderRight() + paddingLeft() + paddingRight();
524 width -= (borderLeft() + borderRight() + paddingLeft() + paddingRight());
609 int bw = max(w + marginLeft() + marginRight() + borderLeft() + borderRight(), rw);
809 max(layerRenderer->width() + layerRenderer->marginLeft() + layerRenderer->marginRight() + layerRenderer->borderLeft() + layerRenderer->borderRight(), rw),
904 int bLeft = borderLeft();
    [all...]
RenderFieldset.cpp 61 m_minPrefWidth = max(m_minPrefWidth, legendMinWidth + paddingLeft() + paddingRight() + borderLeft() + borderRight());
77 xPos = borderLeft() + paddingLeft();
94 xPos = borderLeft() + paddingLeft() + legend->marginLeft();
RenderWidget.cpp 265 IntPoint paintLocation(tx + borderLeft() + paddingLeft(), ty + borderTop() + paddingTop());
316 absPos.move(borderLeft() + paddingLeft(), borderTop() + paddingTop());
318 int w = width() - borderLeft() - borderRight() - paddingLeft() - paddingRight();
RenderTableCell.h 67 int borderLeft() const;
InlineFlowBox.h 98 int marginBorderPaddingLeft() const { return marginLeft() + borderLeft() + paddingLeft(); }
102 int borderLeft() const { if (includeLeftEdge()) return renderer()->style()->borderLeftWidth(); return 0; }
RenderSVGRoot.cpp 65 int paddingAndBorders = paddingLeft() + paddingRight() + borderLeft() + borderRight();
210 return IntSize(borderLeft() + paddingLeft(), borderTop() + paddingTop());
RenderTreeAsText.cpp 260 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
306 if (o.style()->borderLeft() != prevBorder) {
307 prevBorder = o.style()->borderLeft();
308 if (!box.borderLeft())
311 ts << " (" << box.borderLeft() << "px ";
RenderTable.cpp 408 int bl = borderLeft();
446 int leftBorderOverflow = collapsing ? borderLeft() - outerBorderLeft() : 0;
772 const BorderValue& tb = style()->borderLeft();
781 const BorderValue& gb = style()->borderLeft();
793 const BorderValue& sb = firstNonEmptySection->style()->borderLeft();
803 const BorderValue& cb = cs.cell->style()->borderLeft();
807 const BorderValue& rb = cs.cell->parent()->style()->borderLeft();
819 return RenderBlock::borderLeft();
    [all...]
RenderScrollbarPart.cpp 89 int visibleSize = m_scrollbar->owningRenderer()->width() - m_scrollbar->owningRenderer()->borderLeft() - m_scrollbar->owningRenderer()->borderRight();
RenderThemeChromiumWin.cpp 428 int borderLeft = box->borderLeft();
437 bool drawEdges = !(borderRight == 0 && borderLeft == 0 && borderTop == 0 && borderBottom == 0);
445 int spacingLeft = borderLeft + box->paddingLeft();
RenderListBox.cpp 191 int toAdd = paddingLeft() + paddingRight() + borderLeft() + borderRight();
248 return IntRect(tx + borderLeft() + paddingLeft(),
395 if (offsetX < borderLeft() + paddingLeft() || offsetX > width() - borderRight() - paddingRight() - scrollbarWidth)
RenderBox.h 69 IntRect contentBoxRect() const { return IntRect(borderLeft() + paddingLeft(), borderTop() + paddingTop(), contentWidth(), contentHeight()); }
120 int clientLeft() const { return borderLeft(); }
RenderSlider.cpp 258 int toAdd = paddingLeft() + paddingRight() + borderLeft() + borderRight();
332 IntSize baseSize(borderLeft() + paddingLeft() + paddingRight() + borderRight(),
RenderDataGrid.cpp 114 int toAdd = paddingLeft() + paddingRight() + borderLeft() + borderRight();
RenderMarquee.cpp 117 contentWidth += (box->paddingRight() - box->borderLeft());
  /external/webkit/WebCore/editing/
DeleteButtonController.cpp 119 unsigned visibleBorders = style->borderTop().isVisible() + style->borderBottom().isVisible() + style->borderLeft().isVisible() + style->borderRight().isVisible();
216 style->setProperty(CSSPropertyLeft, String::number(-borderWidth - m_target->renderBox()->borderLeft()) + "px");
238 style->setProperty(CSSPropertyLeft, String::number((-buttonWidth / 2) - m_target->renderBox()->borderLeft() - (borderWidth / 2)) + "px");
  /external/webkit/WebCore/bindings/objc/
DOMCSS.h 84 - (NSString *)borderLeft;
85 - (void)setBorderLeft:(NSString *)borderLeft;

Completed in 733 milliseconds

1 2 3