Searched refs:marginRight (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContext.h78 static String pageSizeAndMarginsInPixels(Frame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
H A DPrintContext.cpp340 String PrintContext::pageSizeAndMarginsInPixels(Frame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) argument
343 frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft);
346 String::number(marginTop) + ' ' + String::number(marginRight) + ' ' + String::number(marginBottom) + ' ' + String::number(marginLeft);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderScrollbarPart.h54 virtual LayoutUnit marginRight() const OVERRIDE { ASSERT(isIntegerValue(m_marginBox.right())); return m_marginBox.right(); }
H A DRenderFlexibleBox.cpp99 Length marginRight = child->style()->marginEndUsing(parentStyle); local
103 if (marginRight.isFixed())
104 margin += marginRight.value();
159 int marginAscent = direction == HorizontalLine ? marginTop() : marginRight();
209 int marginAscent = direction == HorizontalLine ? marginTop() : marginRight();
576 return isLeftToRightFlow() ? child->marginLeft() : child->marginRight();
583 return isLeftToRightFlow() ? child->marginRight() : child->marginLeft();
597 return child->marginRight();
611 return child->marginRight();
723 if (child->style()->marginRight()
[all...]
H A DRenderScrollbar.cpp315 int marginRight = part ? static_cast<int>(part->marginRight()) : 0; local
317 endLength += marginRight;
H A DRenderButton.cpp130 return marginRight() + borderRight() + paddingRight() + contentWidth();
H A DRenderText.h114 LayoutUnit marginRight() const { return minimumValueForLength(style()->marginRight(), 0, view()); } function in class:WebCore::RenderText
H A DRenderDeprecatedFlexibleBox.cpp156 Length marginRight = child->style()->marginRight(); local
160 if (marginRight.isFixed())
161 margin += marginRight.value();
504 xPos += child->width() + child->marginRight();
729 childX += contentWidth() - child->marginRight() - child->width();
735 childX += contentWidth() - child->marginRight() - child->width();
H A DRenderBoxModelObject.h143 virtual LayoutUnit marginRight() const = 0;
149 LayoutUnit marginWidth() const { return marginLeft() + marginRight(); }
H A DRenderInline.h48 virtual LayoutUnit marginRight() const OVERRIDE FINAL;
H A DRenderScrollbarPart.cpp112 m_marginBox.setRight(minimumValueForLength(style()->marginRight(), visibleSize, renderView));
H A DInlineFlowBox.h137 return isHorizontal() ? boxModelObject()->marginRight() : boxModelObject()->marginBottom();
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimatableValueFactory.cpp181 return createFromLength(style->marginRight(), style);
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dbluetooth_device_list.js243 * width: number, marginLeft: number, marginRight: number}}
254 marginRight: 0
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dpreview_generator.js310 Math.round(event.pageLayout.marginRight),
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dgrid.js96 var width = size.width + Math.min(size.marginLeft, size.marginRight);
H A Dlist.js57 * width: number, marginLeft: number, marginRight:number}}
400 * width: number, marginLeft: number, marginRight:number}}
421 var mr = parseFloat(cs.marginRight);
452 marginLeft: ml, marginRight: mr};
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DSplitView.js300 this._resizerElement.style.marginRight = -this._resizerElementSize / 2 + "px";
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFrame.h500 // pixels per inch. pageSize, marginTop, marginRight, marginBottom,
506 int& marginRight,
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dgui_main.cpp202 int marginRight = 0 * factorx; local
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp1524 return renderer && renderer->isBox() && (!style || !style->marginBottom().isFixed() || !style->marginTop().isFixed() || !style->marginLeft().isFixed() || !style->marginRight().isFixed());
1528 return renderer && renderer->isBox() && (!style || !style->marginRight().isFixed());
2045 Length marginRight = style->marginRight(); local
2046 if (marginRight.isFixed() || !renderer || !renderer->isBox())
2047 return zoomAdjustedPixelValueForLength(marginRight, style.get());
2049 if (marginRight.isPercent() || marginRight.isViewportPercentage())
2050 // RenderBox gives a marginRight() that is the distance between the right-edge of the child box
2052 // value of the specified margin-right % instead of relying on RenderBox's marginRight() valu
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/
H A Dlist.js57 * width: number, marginLeft: number, marginRight:number}}
412 * width: number, marginLeft: number, marginRight:number}}
433 var mr = parseFloat(cs.marginRight);
464 marginLeft: ml, marginRight: mr};
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleAdjuster.cpp78 if (style->marginRight().quirk())
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp284 position -= isLeftToRightDirection ? renderBox()->marginLeft() : renderBox()->marginRight();
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFrameImpl.h203 int& marginRight,

Completed in 521 milliseconds

123