Searched defs:contentWidth (Results 1 - 5 of 5) sorted by last modified time

/external/webkit/Source/WebCore/rendering/
H A DRenderApplet.cpp66 int contentWidth = style()->width().isFixed() ? style()->width().value() : local
80 setWidget(frame->loader()->subframeLoader()->createJavaAppletWidget(IntSize(contentWidth, contentHeight), element, m_args));
H A DRenderBox.h117 IntRect contentBoxRect() const { return IntRect(borderLeft() + paddingLeft(), borderTop() + paddingTop(), contentWidth(), contentHeight()); }
165 int contentWidth() const { return clientWidth() - paddingLeft() - paddingRight(); } function in class:WebCore::RenderBox
167 int contentLogicalWidth() const { return style()->isHorizontalWritingMode() ? contentWidth() : contentHeight(); }
168 int contentLogicalHeight() const { return style()->isHorizontalWritingMode() ? contentHeight() : contentWidth(); }
H A DRenderMarquee.cpp119 int contentWidth = ltr ? box->maxXLayoutOverflow() : box->minXLayoutOverflow(); local
121 contentWidth += (box->paddingRight() - box->borderLeft());
123 contentWidth = box->width() - contentWidth;
124 contentWidth += (box->paddingLeft() - box->borderRight());
128 return max(0, ltr ? (contentWidth - clientWidth) : (clientWidth - contentWidth));
130 return ltr ? contentWidth : clientWidth;
134 return min(0, ltr ? (contentWidth - clientWidth) : (clientWidth - contentWidth));
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp556 // Call layout to ensure that the contentWidth and contentHeight are correct
586 // Call layout to ensure that the contentWidth and contentHeight are correct
3799 int contentWidth, int contentHeight, float xPercentInDoc,
3807 left, top, width, height, contentWidth, contentHeight,
3798 showRect(int left, int top, int width, int height, int contentWidth, int contentHeight, float xPercentInDoc, float xPercentInView, float yPercentInDoc, float yPercentInView) argument
/external/webkit/Source/WebCore/platform/chromium/
H A DPopupMenuChromium.cpp1341 int contentWidth; local
1344 contentWidth = m_baseWidth - scrollbarWidth;
1347 contentWidth = baseWidth + paddingWidth;
1351 contentWidth = m_baseWidth - scrollbarWidth;
1357 setContentsSize(IntSize(contentWidth, getRowBounds(numItems() - 1).maxY()));

Completed in 533 milliseconds