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

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
PageScaleConstraintsSet.h 63 void adjustFinalConstraintsToContentsSize(WebCore::IntSize viewSize, WebCore::IntSize contentsSize, int nonOverlayScrollbarWidth);
65 void didChangeContentsSize(WebCore::IntSize contentsSize, float pageScaleFactor);
PageScaleConstraintsSet.cpp 84 void PageScaleConstraintsSet::adjustFinalConstraintsToContentsSize(IntSize viewSize, IntSize contentsSize, int nonOverlayScrollbarWidth)
86 m_finalConstraints.fitToContentsWidth(contentsSize.width(), viewSize.width() - nonOverlayScrollbarWidth);
96 void PageScaleConstraintsSet::didChangeContentsSize(IntSize contentsSize, float pageScaleFactor)
101 if (contentsSize.width() > m_lastContentsWidth
107 m_lastContentsWidth = contentsSize.width();
ScrollbarGroup.h 69 virtual WebCore::IntSize contentsSize() const OVERRIDE;
ScrollbarGroup.cpp 189 return IntPoint(contentsSize().width() - visibleWidth(), contentsSize().height() - visibleHeight());
212 IntSize ScrollbarGroup::contentsSize() const
WebFrameImpl.h 91 virtual WebSize contentsSize() const;
WebViewImpl.cpp     [all...]
WebViewImpl.h 566 WebCore::IntSize contentsSize() const;
    [all...]
WebFrameImpl.cpp 607 WebSize WebFrameImpl::contentsSize() const
609 return frame()->view()->contentsSize();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
GraphicsLayerTest.cpp 128 virtual IntSize contentsSize() const OVERRIDE { return IntSize(100, 100); }
140 return IntPoint(contentsSize().width() - visibleWidth(), contentsSize().height() - visibleHeight());
WebFrameTest.cpp 812 EXPECT_EQ(divWidth, webViewHelper.webView()->mainFrame()->contentsSize().width);
813 EXPECT_EQ(divHeight, webViewHelper.webView()->mainFrame()->contentsSize().height);
838 EXPECT_EQ(viewportWidth, webViewHelper.webViewImpl()->mainFrameImpl()->frameView()->contentsSize().width());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.h 142 virtual IntSize contentsSize() const OVERRIDE; // Always at least as big as the visibleWidth()/visibleHeight().
143 int contentsWidth() const { return contentsSize().width(); }
144 int contentsHeight() const { return contentsSize().height(); }
ScrollableArea.h 145 virtual IntSize contentsSize() const = 0;
ScrollView.cpp 214 IntSize ScrollView::contentsSize() const
221 if (contentsSize() == newSize)
372 IntSize docSize = contentsSize();
425 IntSize newDocSize = contentsSize();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.h 118 virtual IntSize contentsSize() const OVERRIDE;
RenderLayerScrollableArea.h 103 virtual IntSize contentsSize() const OVERRIDE;
CompositedLayerMapping.cpp 640 FloatSize contentsSize = relativeCompositingBounds.size();
646 if (oldSize != contentsSize) {
647 m_graphicsLayer->setSize(contentsSize);
715 FloatSize foregroundSize = contentsSize;
734 FloatSize backgroundSize = contentsSize;
    [all...]
RenderListBox.cpp 805 IntSize RenderListBox::contentsSize() const
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 214 WebCore::IntSize contentsSize = _scrollableArea->contentsSize();
215 return NSMakeRect(0, 0, contentsSize.width(), contentsSize.height());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 252 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
357 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
SpatialNavigation.cpp 482 LayoutSize size = frame->view()->contentsSize();
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 186 virtual WebSize contentsSize() const = 0;
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 248 contents_size = main_frame->contentsSize();
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 542 if (size == contentsSize())
567 ScrollView::setScrollOrigin(IntPoint(-rect.x(), -rect.y()), !m_frame->document()->printing(), size == contentsSize());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ThemeMac.mm 550 [flippedView setFrameSize:NSSizeFromCGSize(scrollView->contentsSize())];
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 164 scrollLayer->setBounds(child->view()->contentsSize());
    [all...]

Completed in 1009 milliseconds

1 2