Searched refs:contentsWidth (Results 1 - 19 of 19) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderFrame.cpp89 setWidth(max(view->contentsWidth() + borderAndPaddingWidth(), width()));
H A DRenderFrameBase.cpp82 setWidth(max(width(), childFrameView->contentsWidth() + hBorder));
H A DRenderIFrame.cpp76 setWidth(max(width(), view->contentsWidth() + border));
H A DRenderLayerCompositor.cpp479 int rw = m_renderView->frameView()->contentsWidth();
H A DRenderBox.cpp1029 rw = frameView->contentsWidth();
H A DRenderLayer.cpp1512 xOffset = max(0, min(frameView->contentsWidth(), xOffset));
/external/webkit/Source/WebCore/platform/
H A DScrollView.cpp346 IntPoint maximumOffset(contentsWidth() - visibleWidth() - m_scrollOrigin.x(), contentsHeight() - visibleHeight() - m_scrollOrigin.y());
382 horizontalOffset = max(min(horizontalOffset, contentsWidth() - visibleWidth()), 0);
489 else if (physicalScrollX > contentsWidth() - visibleContentRect().width())
490 stretch.setWidth(physicalScrollX - (contentsWidth() - visibleContentRect().width()));
603 m_horizontalScrollbar->setEnabled(contentsWidth() > clientWidth);
617 m_horizontalScrollbar->setProportion(clientWidth, contentsWidth());
1125 } else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) {
1126 int width = physicalScrollX - (contentsWidth() - visibleContentRect().width());
H A DScrollView.h170 int contentsWidth() const { return contentsSize().width(); } function in class:WebCore::ScrollView
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DPlatformBridge.cpp186 x = std::max(0, std::min(frameView->contentsWidth(), x));
/external/webkit/Source/WebCore/html/
H A DHTMLDocument.cpp96 return frameView ? frameView->contentsWidth() : 0;
H A DHTMLBodyElement.cpp337 return view ? adjustForZoom(view->contentsWidth(), document) : 0;
/external/webkit/Source/WebCore/page/
H A DPrintContext.cpp194 float viewLogicalWidth = useViewWidth ? m_frame->view()->contentsWidth() : m_frame->view()->contentsHeight();
H A DFrameView.cpp1012 updateOverflowStatus(layoutWidth() < contentsWidth(),
1051 hasOverflowScroll = layoutWidth() < contentsWidth() || layoutHeight() < contentsHeight();
1203 int maxX = contentsWidth() - visibleContentWidth;
1223 float dragFactor = (contentsWidth() - visibleContentWidth * pageScaleFactor) / maxX;
H A DEventHandler.cpp2274 rightAligned ? view->contentsWidth() - kContextMenuMargin : kContextMenuMargin,
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebFrame.cpp474 return IntRect(0, 0, view->contentsWidth(), view->contentsHeight());
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp645 int width = view->contentsWidth();
711 int width = view ? view->contentsWidth() : 0;
980 view->contentsWidth(), view->contentsHeight()));
1225 newBounds.height(), view->contentsWidth(),
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe.cpp1353 return QSize(view->contentsWidth(), view->contentsHeight());
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebview.cpp908 requisition->width = view->contentsWidth();
923 *minimum = *natural = view->contentsWidth();
/external/webkit/Source/WebKit/win/
H A DWebFrame.cpp2491 result->right = view->contentsWidth();

Completed in 313 milliseconds