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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/page/
PageScaleConstraintsSet.h 63 void adjustFinalConstraintsToContentsSize(IntSize viewSize, IntSize contentsSize, int nonOverlayScrollbarWidth);
65 void didChangeContentsSize(IntSize contentsSize, float pageScaleFactor);
PageScaleConstraintsSet.cpp 80 void PageScaleConstraintsSet::adjustFinalConstraintsToContentsSize(IntSize viewSize, IntSize contentsSize, int nonOverlayScrollbarWidth)
82 m_finalConstraints.fitToContentsWidth(contentsSize.width(), viewSize.width() - nonOverlayScrollbarWidth);
92 void PageScaleConstraintsSet::didChangeContentsSize(IntSize contentsSize, float pageScaleFactor)
97 if (contentsSize.width() > m_lastContentsWidth
103 m_lastContentsWidth = contentsSize.width();
PrintContext.cpp 253 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
358 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
FrameView.cpp 518 if (size == contentsSize())
550 ScrollView::setScrollOrigin(IntPoint(-rect.x(), -rect.y()), !m_frame->document()->printing(), size == contentsSize());
    [all...]
SpatialNavigation.cpp 483 LayoutSize size = frame->view()->contentsSize();
  /external/chromium_org/third_party/WebKit/Source/web/
WebViewBenchmarkSupportImpl.cpp 79 IntSize contentsSize = view->contentsSize();
80 paintSize = WebRect(0, 0, contentsSize.width(), contentsSize.height());
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 88 virtual WebSize contentsSize() const;
WebViewImpl.cpp     [all...]
WebViewImpl.h 574 WebCore::IntSize contentsSize() const;
    [all...]
WebFrameImpl.cpp 601 WebSize WebFrameImpl::contentsSize() const
603 return frame()->view()->contentsSize();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
GraphicsLayerTest.cpp 125 virtual IntSize contentsSize() const OVERRIDE { return IntSize(100, 100); }
136 return IntPoint(contentsSize().width() - visibleWidth(), contentsSize().height() - visibleHeight());
WebFrameTest.cpp 478 EXPECT_EQ(divWidth, m_webView->mainFrame()->contentsSize().width);
479 EXPECT_EQ(divHeight, m_webView->mainFrame()->contentsSize().height);
504 EXPECT_EQ(viewportWidth, webViewImpl()->mainFrameImpl()->frameView()->contentsSize().width());
509 EXPECT_EQ(980, webViewImpl()->mainFrameImpl()->frameView()->contentsSize().width());
682 EXPECT_EQ(viewportWidth, webViewImpl->mainFrameImpl()->frameView()->contentsSize().width());
683 EXPECT_EQ(viewportHeight, webViewImpl->mainFrameImpl()->frameView()->contentsSize().height());
705 EXPECT_EQ(viewportWidth / 2, webViewImpl->mainFrameImpl()->frameView()->contentsSize().width());
706 EXPECT_EQ(viewportHeight / 2, webViewImpl->mainFrameImpl()->frameView()->contentsSize().height());
726 EXPECT_EQ(980, webViewImpl->mainFrameImpl()->frameView()->contentsSize().width());
727 EXPECT_EQ(980.0 / viewportWidth * viewportHeight, webViewImpl->mainFrameImpl()->frameView()->contentsSize().height())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollView.h 144 virtual IntSize contentsSize() const OVERRIDE; // Always at least as big as the visibleWidth()/visibleHeight().
145 int contentsWidth() const { return contentsSize().width(); }
146 int contentsHeight() const { return contentsSize().height(); }
ScrollableArea.h 148 virtual IntSize contentsSize() const = 0;
ScrollView.cpp 246 IntSize ScrollView::contentsSize() const
253 if (contentsSize() == newSize)
399 IntSize docSize = contentsSize();
452 IntSize newDocSize = contentsSize();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.h 118 virtual IntSize contentsSize() const OVERRIDE;
RenderLayerBacking.cpp 574 FloatSize contentsSize = relativeCompositingBounds.size();
580 if (oldSize != contentsSize) {
581 m_graphicsLayer->setSize(contentsSize);
644 FloatSize foregroundSize = contentsSize;
663 FloatSize backgroundSize = contentsSize;
    [all...]
RenderLayer.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollAnimatorMac.mm 216 WebCore::IntSize contentsSize = _scrollableArea->contentsSize();
217 return NSMakeRect(0, 0, contentsSize.width(), contentsSize.height());
    [all...]
ThemeMac.mm 551 [flippedView setFrameSize:NSSizeFromCGSize(scrollView->contentsSize())];
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 153 virtual WebSize contentsSize() const = 0;
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 245 contents_size = main_frame->contentsSize();
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 143 scrollLayer->setBounds(frameView->contentsSize());

Completed in 726 milliseconds

1 2