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

1 2 3 4

  /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);
  /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/webkit/Source/WebCore/page/
PrintContext.h 75 static String pageSizeAndMarginsInPixels(Frame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
PrintContext.cpp 304 String PrintContext::pageSizeAndMarginsInPixels(Frame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft)
307 frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft);
311 makeString(String::number(marginTop), ' ', String::number(marginRight), ' ', String::number(marginBottom), ' ', String::number(marginLeft));
  /external/webkit/Source/WebKit/mac/Misc/
WebCoreStatistics.h 92 - (NSString *)pageSizeAndMarginsInPixels:(int)pageNumber:(int)width:(int)height:(int)marginTop:(int)marginRight:(int)marginBottom:(int)marginLeft;
WebCoreStatistics.mm 296 - (NSString *)pageSizeAndMarginsInPixels:(int)pageNumber:(int)width:(int)height:(int)marginTop:(int)marginRight:(int)marginBottom:(int)marginLeft
298 return PrintContext::pageSizeAndMarginsInPixels(_private->coreFrame, pageNumber, width, height, marginTop, marginRight, marginBottom, marginLeft);
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
FixedPositioning.h 112 SkLength marginBottom, // CSS margin-bottom property
122 m_fixedMarginBottom = marginBottom;
  /external/webkit/Source/WebCore/rendering/
RenderScrollbar.cpp 330 int marginBottom = part ? part->marginBottom() : 0;
332 endLength += marginBottom;
352 rect.setHeight(rect.height() - (partRenderer->marginTop() + partRenderer->marginBottom()));
RenderFlexibleBox.cpp 373 ascent = child->height() + child->marginBottom();
375 int descent = (child->marginTop() + child->height() + child->marginBottom()) - ascent;
387 setHeight(max(height(), yPos + child->marginTop() + child->height() + child->marginBottom()));
435 childY += child->marginTop() + max(0, (contentHeight() - (child->height() + child->marginTop() + child->marginBottom())) / 2);
440 ascent = child->height() + child->marginBottom();
446 childY += contentHeight() - child->marginBottom() - child->height();
687 setHeight(height() + child->height() + child->marginBottom());
    [all...]
RenderInline.h 45 virtual int marginBottom() const;
RenderScrollbarPart.cpp 116 m_marginBottom = style()->marginBottom().calcMinValue(visibleSize);
RenderBoxModelObject.h 104 virtual int marginBottom() const = 0;
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundle.cpp 166 WKStringRef WKBundlePageSizeAndMarginsInPixels(WKBundleRef bundleRef, WKBundleFrameRef frameRef, int pageIndex, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft)
168 return toCopiedAPI(toImpl(bundleRef)->pageSizeAndMarginsInPixels(toImpl(frameRef), pageIndex, width, height, marginTop, marginRight, marginBottom, marginLeft));
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
LayoutTestController.idl 71 DOMString pageSizeAndMarginsInPixels(in int pageIndex, in int width, in int height, in int marginTop, in int marginRight, in int marginBottom, in int marginLeft);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.h 74 static WTF::CString pageSizeAndMarginsInPixels(WebKitWebFrame*, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
LayoutTestController.h 120 JSRetainPtr<JSStringRef> pageSizeAndMarginsInPixels(int pageIndex, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.cpp 179 String InjectedBundle::pageSizeAndMarginsInPixels(WebFrame* frame, int pageIndex, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft)
185 return PrintContext::pageSizeAndMarginsInPixels(coreFrame, pageIndex, width, height, marginTop, marginRight, marginBottom, marginLeft);
  /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);
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp     [all...]
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.h 184 - (NSString *)marginBottom;
185 - (void)setMarginBottom:(NSString *)marginBottom;
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 258 SkLength marginLeft, marginTop, marginRight, marginBottom;
262 marginBottom = SkLength::convertLength(view->style()->marginBottom());
287 marginRight, marginBottom,
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 464 // pixels per inch. pageSize, marginTop, marginRight, marginBottom,
471 int& marginBottom,
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.h 178 int& marginBottom,
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h 186 static QString pageSizeAndMarginsInPixels(QWebFrame* frame, int pageIndex, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);

Completed in 417 milliseconds

1 2 3 4