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

1 2 3

  /frameworks/base/core/java/android/preference/
PreferenceFrameLayout.java 87 int borderLeft = getPaddingLeft();
98 borderLeft -= mBorderLeft;
108 borderLeft += mBorderLeft;
119 || previousLeft != borderLeft || previousRight != borderRight) {
120 setPadding(borderLeft, borderTop, borderRight, borderBottom);
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.h 86 virtual int borderLeft() const { return style()->borderLeftWidth(); }
94 int borderAndPaddingWidth() const { return borderLeft() + borderRight() + paddingLeft() + paddingRight(); }
97 int borderAndPaddingLogicalLeft() const { return style()->isHorizontalWritingMode() ? borderLeft() + paddingLeft() : borderTop() + paddingTop(); }
100 int borderLogicalLeft() const { return style()->isHorizontalWritingMode() ? borderLeft() : borderTop(); }
RenderFrameBase.cpp 67 int hBorder = borderLeft() + borderRight();
RenderMedia.cpp 77 controlsRenderer->setLocation(borderLeft() + paddingLeft(), borderTop() + paddingTop());
RenderButton.cpp 181 return IntRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderIFrame.cpp 75 int border = borderLeft() + borderRight();
RenderFileUploadControl.cpp 220 IntRect clipRect(tx + borderLeft(), ty + borderTop(),
221 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight);
235 int contentLeft = tx + borderLeft() + paddingLeft();
RenderTextControlMultiLine.cpp 136 int inset = borderLeft() + paddingLeft();
RenderFieldset.cpp 150 int xOff = (legend->x() > 0) ? 0 : (legend->width() - borderLeft()) / 2;
204 int xOff = (legend->x() > 0) ? 0 : (legend->width() - borderLeft()) / 2;
LayoutState.cpp 87 m_pageOffset = IntSize(m_layoutOffset.width() + renderer->borderLeft() + renderer->paddingLeft(),
RenderBox.h 117 IntRect contentBoxRect() const { return IntRect(borderLeft() + paddingLeft(), borderTop() + paddingTop(), contentWidth(), contentHeight()); }
139 int minXLayoutOverflow() const { return m_overflow ? m_overflow->minXLayoutOverflow() : borderLeft(); }
140 int maxXLayoutOverflow() const { return m_overflow ? m_overflow->maxXLayoutOverflow() : borderLeft() + clientWidth(); }
177 int clientLeft() const { return borderLeft(); }
RenderScrollbarPart.cpp 93 int visibleSize = m_scrollbar->owningRenderer()->width() - m_scrollbar->owningRenderer()->borderLeft() - m_scrollbar->owningRenderer()->borderRight();
RenderTableCell.h 60 virtual int borderLeft() const;
RenderFlexibleBox.cpp 325 int xPos = borderLeft() + paddingLeft();
346 xPos = borderLeft() + paddingLeft();
458 remainingSpace = borderLeft() + paddingLeft() + contentWidth() - xPos;
603 int xPos = borderLeft() + paddingLeft();
665 int childX = borderLeft() + paddingLeft();
    [all...]
RenderTreeAsText.cpp 308 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
354 if (o.style()->borderLeft() != prevBorder) {
355 prevBorder = o.style()->borderLeft();
356 if (!box.borderLeft())
359 ts << " (" << box.borderLeft() << "px ";
RenderMarquee.cpp 121 contentWidth += (box->paddingRight() - box->borderLeft());
RenderTable.h 57 int borderLeft() const
RenderTextControlSingleLine.cpp 580 result += resultsRenderer->borderLeft() + resultsRenderer->borderRight() +
584 result += cancelRenderer->borderLeft() + cancelRenderer->borderRight() +
589 result += speechRenderer->borderLeft() + speechRenderer->borderRight() +
    [all...]
RenderThemeChromiumWin.cpp 474 int borderLeft = box->borderLeft();
483 bool drawEdges = !(!borderRight && !borderLeft && !borderTop && !borderBottom);
491 int spacingLeft = borderLeft + box->paddingLeft();
RenderTextControl.cpp 635 IntRect clipRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop());
  /external/webkit/Source/WebCore/editing/
DeleteButtonController.cpp 123 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/Source/WebCore/inspector/
DOMNodeHighlighter.cpp 253 IntRect borderBox(paddingBox.x() - renderBox->borderLeft(), paddingBox.y() - renderBox->borderTop(),
254 paddingBox.width() + renderBox->borderLeft() + renderBox->borderRight(), paddingBox.height() + renderBox->borderTop() + renderBox->borderBottom());
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.h 84 - (NSString *)borderLeft;
85 - (void)setBorderLeft:(NSString *)borderLeft;
DOMCSS.mm 277 - (NSString *)borderLeft
282 - (void)setBorderLeft:(NSString *)borderLeft
284 [self setProperty:@"border-left" value:borderLeft priority:@""];
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 188 || (cell->borderLeft() > 0 && cell->borderRight() > 0))

Completed in 820 milliseconds

1 2 3