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

1 2 3

  /frameworks/base/core/java/android/preference/
PreferenceFrameLayout.java 85 int borderTop = getPaddingTop();
96 borderTop -= mBorderTop;
106 borderTop += mBorderTop;
118 if (previousTop != borderTop || previousBottom != borderBottom
120 setPadding(borderLeft, borderTop, borderRight, borderBottom);
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.h 84 virtual int borderTop() const { return style()->borderTopWidth(); }
93 int borderAndPaddingHeight() const { return borderTop() + borderBottom() + paddingTop() + paddingBottom(); }
97 int borderAndPaddingLogicalLeft() const { return style()->isHorizontalWritingMode() ? borderLeft() + paddingLeft() : borderTop() + paddingTop(); }
100 int borderLogicalLeft() const { return style()->isHorizontalWritingMode() ? borderLeft() : borderTop(); }
RenderDataGrid.cpp 216 int scrollbarTop = borderTop();
231 int scrollbarTop = borderTop();
245 int scrollbarTop = borderTop();
260 int scrollbarTop = borderTop();
RenderFrameBase.cpp 68 int vBorder = borderTop() + borderBottom();
RenderMedia.cpp 77 controlsRenderer->setLocation(borderLeft() + paddingLeft(), borderTop() + paddingTop());
RenderListBox.cpp 254 ty + borderTop() + paddingTop() + itemHeight() * (index - m_indexOffset),
331 ty + borderTop(),
333 height() - (borderTop() + borderBottom()));
440 _ty + borderTop(),
442 height() - borderTop() - borderBottom());
456 if (offsetY < borderTop() + paddingTop() || offsetY > height() - paddingBottom() - borderBottom())
463 int newOffset = (offsetY - borderTop() - paddingTop()) / itemHeight() + m_indexOffset;
523 if (offsetY < borderTop() + paddingTop() && scrollToRevealElementAtListIndex(offset - 1))
705 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
718 int scrollbarTop = borderTop();
    [all...]
RenderButton.cpp 181 return IntRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderFileUploadControl.cpp 220 IntRect clipRect(tx + borderLeft(), ty + borderTop(),
221 width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop() + buttonShadowHeight);
246 + buttonRenderer->marginTop() + buttonRenderer->borderTop() + buttonRenderer->paddingTop()
256 int iconY = ty + borderTop() + paddingTop() + (contentHeight() - iconHeight) / 2;
RenderIFrame.cpp 57 int border = borderTop() + borderBottom();
RenderTextControlMultiLine.cpp 156 int inset = borderTop() + paddingTop();
RenderFieldset.cpp 146 int yOff = (legend->y() > 0) ? 0 : (legend->height() - borderTop()) / 2;
200 int yOff = (legend->y() > 0) ? 0 : (legend->height() - borderTop()) / 2;
LayoutState.cpp 88 m_layoutOffset.height() + renderer->borderTop() + renderer->paddingTop());
RenderBox.h 117 IntRect contentBoxRect() const { return IntRect(borderLeft() + paddingLeft(), borderTop() + paddingTop(), contentWidth(), contentHeight()); }
137 int minYLayoutOverflow() const { return m_overflow? m_overflow->minYLayoutOverflow() : borderTop(); }
138 int maxYLayoutOverflow() const { return m_overflow ? m_overflow->maxYLayoutOverflow() : borderTop() + clientHeight(); }
178 int clientTop() const { return borderTop(); }
RenderScrollbarPart.cpp 108 int visibleSize = m_scrollbar->owningRenderer()->height() - m_scrollbar->owningRenderer()->borderTop() - m_scrollbar->owningRenderer()->borderBottom();
RenderTableCell.h 62 virtual int borderTop() const;
RenderTextControlSingleLine.cpp 302 spinBox->setLocation(spinBox->x() + paddingRight(), borderTop());
303 spinBox->setHeight(height() - borderTop() - borderBottom());
613 resultsRenderer->borderTop() + resultsRenderer->borderBottom() +
621 cancelRenderer->borderTop() + cancelRenderer->borderBottom() +
    [all...]
RenderTreeAsText.cpp 308 if (box.borderTop() || box.borderRight() || box.borderBottom() || box.borderLeft()) {
312 if (o.style()->borderTop() != prevBorder) {
313 prevBorder = o.style()->borderTop();
314 if (!box.borderTop())
317 ts << " (" << box.borderTop() << "px ";
RenderTextControl.cpp 464 setHeight(m_innerText->renderBox()->borderTop() + m_innerText->renderBox()->borderBottom() +
635 IntRect clipRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderBottom() - borderTop());
RenderFlexibleBox.cpp 324 int yPos = borderTop() + paddingTop();
604 int yPos = borderTop() + paddingTop();
632 setHeight(borderTop() + paddingTop());
708 remainingSpace = borderTop() + paddingTop() + contentHeight() - yPos;
    [all...]
RenderMarquee.cpp 140 int contentHeight = box->maxYLayoutOverflow() - box->borderTop() + box->paddingBottom();
RenderTable.h 71 int borderTop() const
RenderThemeChromiumWin.cpp 475 int borderTop = box->borderTop();
483 bool drawEdges = !(!borderRight && !borderLeft && !borderTop && !borderBottom);
493 int spacingTop = borderTop + box->paddingTop();
  /external/webkit/Source/WebCore/editing/
DeleteButtonController.cpp 123 unsigned visibleBorders = style->borderTop().isVisible() + style->borderBottom().isVisible() + style->borderLeft().isVisible() + style->borderRight().isVisible();
213 style->setProperty(CSSPropertyTop, String::number(-borderWidth - m_target->renderBox()->borderTop()) + "px");
237 style->setProperty(CSSPropertyTop, String::number((-buttonHeight / 2) - m_target->renderBox()->borderTop() - (borderWidth / 2) + buttonBottomShadowOffset) + "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 78 - (NSString *)borderTop;
79 - (void)setBorderTop:(NSString *)borderTop;

Completed in 468 milliseconds

1 2 3