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

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
PageScaleConstraintsSet.h 64 void adjustFinalConstraintsToContentsSize(IntSize contentsSize, int nonOverlayScrollbarWidth);
66 void didChangeContentsSize(IntSize contentsSize, float pageScaleFactor);
78 IntSize mainFrameSize(const IntSize& contentsSize) const;
PageScaleConstraintsSet.cpp 83 void PageScaleConstraintsSet::adjustFinalConstraintsToContentsSize(IntSize contentsSize, int nonOverlayScrollbarWidth)
85 m_finalConstraints.fitToContentsWidth(contentsSize.width(), m_viewSize.width() - nonOverlayScrollbarWidth);
95 void PageScaleConstraintsSet::didChangeContentsSize(IntSize contentsSize, float pageScaleFactor)
100 if (contentsSize.width() > m_lastContentsWidth
106 m_lastContentsWidth = contentsSize.width();
145 IntSize PageScaleConstraintsSet::mainFrameSize(const IntSize& contentsSize) const
151 && contentsSize.width()
153 return IntSize(contentsSize.width(), computeHeightByAspectRatio(contentsSize.width(), m_viewSize));
ScrollbarGroup.h 65 virtual IntSize contentsSize() const OVERRIDE;
ScrollbarGroup.cpp 181 return IntPoint(contentsSize().width() - visibleWidth(), contentsSize().height() - visibleHeight());
204 IntSize ScrollbarGroup::contentsSize() const
PopupListBox.cpp 529 if (y < contentsSize().height())
925 if (contentsSize() == newSize)
978 bool needsVerticalScrollbar = contentsSize().height() > visibleHeight();
996 m_verticalScrollbar->setEnabled(contentsSize().height() > clientHeight);
997 m_verticalScrollbar->setProportion(clientHeight, contentsSize().height());
    [all...]
PopupListBox.h 115 virtual IntSize contentsSize() const OVERRIDE { return m_contentsSize; }
PopupMenuTest.cpp 524 EXPECT_EQ(container->width(), listBox->contentsSize().width() + 2);
547 EXPECT_EQ(container->width(), listBox->contentsSize().width() + ScrollbarTheme::theme()->scrollbarThickness() + 2);
WebLocalFrameImpl.h 95 virtual WebSize contentsSize() const OVERRIDE;
WebRemoteFrameImpl.h 47 virtual WebSize contentsSize() const OVERRIDE;
WebRemoteFrameImpl.cpp 249 WebSize WebRemoteFrameImpl::contentsSize() const
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayerTest.cpp 134 virtual IntSize contentsSize() const OVERRIDE { return IntSize(100, 100); }
145 return IntPoint(contentsSize().width() - visibleWidth(), contentsSize().height() - visibleHeight());
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.h 127 virtual IntSize contentsSize() const OVERRIDE; // Always at least as big as the visibleWidth()/visibleHeight().
128 int contentsWidth() const { return contentsSize().width(); }
129 int contentsHeight() const { return contentsSize().height(); }
ScrollableArea.h 170 virtual IntSize contentsSize() const = 0;
ScrollView.cpp 194 IntSize ScrollView::contentsSize() const
201 if (contentsSize() == newSize)
438 computeScrollbarExistence(newHasHorizontalScrollbar, newHasVerticalScrollbar, contentsSize(), option);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.cpp 108 m_innerViewportScrollLayer->setSize(contentsSize());
351 return flooredIntPoint(FloatSize(contentsSize()) - visibleRect().size());
368 IntSize PinchViewport::contentsSize() const
PinchViewport.h 125 virtual IntSize contentsSize() const OVERRIDE;
FrameView.cpp 421 if (size == contentsSize())
438 IntPoint maxScrollExtent(contentsSize().width() - scrollOrigin().x(), contentsSize().height() - scrollOrigin().y());
460 ScrollView::setScrollOrigin(IntPoint(-rect.x(), -rect.y()), !m_frame->document()->printing(), size == contentsSize());
578 if (scrollOrigin() == -documentRect.location() && contentsSize() == documentRect.size())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 215 blink::IntSize contentsSize = _scrollableArea->contentsSize();
216 return NSMakeRect(0, 0, contentsSize.width(), contentsSize.height());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 209 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
339 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 167 scrollingWebLayer->setBounds(frameView->contentsSize());
175 scrollLayer->setBounds(toLocalFrame(child)->view()->contentsSize());
366 webLayer->setBounds(scrollableArea->contentsSize());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.h 100 virtual IntSize contentsSize() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 179 virtual WebSize contentsSize() const = 0;
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 213 contents_size = main_frame->contentsSize();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositedLayerMapping.cpp 674 FloatSize contentsSize = relativeCompositingBounds.size();
690 updateForegroundLayerGeometry(contentsSize, clippingBox);
691 updateBackgroundLayerGeometry(contentsSize);
724 const IntSize& contentsSize = relativeCompositingBounds.size();
725 if (oldSize != contentsSize)
726 m_graphicsLayer->setSize(contentsSize);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp     [all...]

Completed in 674 milliseconds

1 2