/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
CaptureRenderer.java | 40 d.height += node.marginTop + node.marginBottom; 76 if (node.hasMargins && (node.marginLeft | node.marginBottom | 81 node.marginTop + height + node.marginBottom);
|
ScreenViewer.java | 599 if (node.hasMargins && (node.marginLeft | node.marginBottom | 604 node.marginTop + node.height + node.marginBottom - 1);
|
/frameworks/base/core/java/android/print/pdf/ |
PrintedPdfDocument.java | 101 final int marginBottom = (int) (((float) minMargins.getBottomMils() / MILS_PER_INCH) 104 mPageHeight - marginBottom);
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewNode.java | 51 public int marginBottom; 81 marginBottom = getInt("layout_bottomMargin", Integer.MIN_VALUE); 89 marginBottom != Integer.MIN_VALUE;
|
/external/chromium_org/third_party/npapi/npspy/windows/ |
gui_main.cpp | 204 int marginBottom = 7 * factory; 224 height - rcButtonOptions.bottom + rcButtonOptions.top - marginBottom, 231 height - rcClear.bottom + rcClear.top - marginBottom, 238 height - rcCheckMute.bottom + rcCheckMute.top - marginBottom, 245 height - rcCheckOntop.bottom + rcCheckOntop.top - marginBottom, 251 height - rcButtonOptions.bottom + rcButtonOptions.top - marginBottom - marginTop - spaceVer,
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PrintContext.h | 78 static String pageSizeAndMarginsInPixels(Frame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
|
PrintContext.cpp | 339 String PrintContext::pageSizeAndMarginsInPixels(Frame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) 342 frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft); 345 String::number(marginTop) + ' ' + String::number(marginRight) + ' ' + String::number(marginBottom) + ' ' + String::number(marginLeft);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderScrollbarPart.h | 52 virtual LayoutUnit marginBottom() const OVERRIDE { ASSERT(isIntegerValue(m_marginBox.bottom())); return m_marginBox.bottom(); }
|
RenderScrollbar.cpp | 323 int marginBottom = part ? static_cast<int>(part->marginBottom()) : 0; 325 endLength += marginBottom;
|
RenderFlexibleBox.cpp | 561 return isLeftToRightFlow() ? child->marginTop() : child->marginBottom(); 568 return isLeftToRightFlow() ? child->marginBottom() : child->marginTop(); 577 return child->marginBottom(); 591 return child->marginBottom(); 600 return marginBottom(); 712 if (child->style()->marginBottom().isAuto()) 736 if (child->style()->marginBottom().isAuto()) 744 return child->style()->marginTop().isAuto() || child->style()->marginBottom().isAuto(); 762 Length bottomOrRight = isHorizontal ? child->style()->marginBottom() : child->style()->marginRight(); 843 child->setMarginBottom(computeChildMarginValue(child->style()->marginBottom(), renderView)) [all...] |
RenderBoxModelObject.h | 146 virtual LayoutUnit marginBottom() const = 0; 153 LayoutUnit marginHeight() const { return marginTop() + marginBottom(); }
|
RenderDeprecatedFlexibleBox.cpp | 394 ascent = child->height() + child->marginBottom(); 470 ascent = child->height() + child->marginBottom(); 476 childY += contentHeight() - child->marginBottom() - child->height(); 722 setHeight(height() + child->height() + child->marginBottom()); [all...] |
RenderInline.h | 50 virtual LayoutUnit marginBottom() const OVERRIDE FINAL;
|
RenderScrollbarPart.cpp | 131 m_marginBox.setBottom(minimumValueForLength(style()->marginBottom(), visibleSize, renderView));
|
InlineFlowBox.h | 137 return isHorizontal() ? boxModelObject()->marginRight() : boxModelObject()->marginBottom();
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
BalloonHint.java | 435 int marginBottom = height - mIcon.getIntrinsicHeight() 438 height - marginBottom);
|
SoftKeyboardView.java | 462 int marginBottom = softKey.height() - icon.getIntrinsicHeight() 466 softKey.mBottom - marginBottom);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PrintCustomContent.java | 166 final int marginBottom = (int) (density * (float) newAttributes.getMinMargins() 169 .getHeightMils() / MILS_IN_INCH) - marginTop - marginBottom;
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebFrame.h | 526 // pixels per inch. pageSize, marginTop, marginRight, marginBottom, 533 int& marginBottom,
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
SplitView.js | 310 this._resizerElement.style.marginBottom = -this._resizerElementSize / 2 + "px";
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
AccordionControl.java | 99 layout.marginBottom = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleAdjuster.cpp | 84 if (style->marginBottom().quirk())
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
SliderThumbElement.cpp | 276 position = offset.y() - renderBox()->height() / 2 - trackBoundingBox.y() + inputBoundingBox.y() - renderBox()->marginBottom();
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebFrameImpl.h | 204 int& marginBottom,
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
Internals.idl | 219 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long width, long height, long marginTop, long marginRight, long marginBottom, long marginLeft);
|