Searched refs:contentsSize (Results 1 - 25 of 51) sorted by relevance

123

/macosx-10.10/WebKit2-7600.1.25/UIProcess/mac/
H A DRemoteLayerTreeDrawingAreaProxy.h71 float indicatorScale(WebCore::IntSize contentsSize) const;
73 void updateDebugIndicator(WebCore::IntSize contentsSize, bool rootLayerChanged, float scale);
H A DRemoteLayerTreeDrawingAreaProxy.mm226 float scale = indicatorScale(layerTreeTransaction.contentsSize());
228 updateDebugIndicator(layerTreeTransaction.contentsSize(), rootLayerChanged, scale);
281 float RemoteLayerTreeDrawingAreaProxy::indicatorScale(IntSize contentsSize) const
287 if (!contentsSize.isEmpty()) {
288 float widthScale = std::min<float>((viewSize.width() - 2 * indicatorInset) / contentsSize.width(), 0.05);
289 scale = std::min(widthScale, static_cast<float>(viewSize.height() - 2 * indicatorInset) / contentsSize.height());
301 void RemoteLayerTreeDrawingAreaProxy::updateDebugIndicator(IntSize contentsSize, bool rootLayerChanged, float scale)
311 [m_tileMapHostLayer setBounds:FloatRect(FloatPoint(), contentsSize)];
/macosx-10.10/WebCore-7600.1.25/page/
H A DViewportConfiguration.h71 const IntSize& contentsSize() const { return m_contentSize; } function in class:WebCore::ViewportConfiguration
H A DPrintContext.cpp250 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
313 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
/macosx-10.10/WebKit2-7600.1.25/UIProcess/CoordinatedGraphics/
H A DPageViewportController.cpp169 void PageViewportController::didRenderFrame(const IntSize& contentsSize, const IntRect& coveredRect) argument
171 if (m_clientContentsSize != contentsSize) {
172 m_clientContentsSize = contentsSize;
176 m_client->didChangeContentsSize(contentsSize);
H A DPageViewportController.h78 void didRenderFrame(const WebCore::IntSize& contentsSize, const WebCore::IntRect& coveredRect);
H A DWebView.cpp263 visibleContentsRect.intersect(FloatRect(FloatPoint(), contentsSize()));
520 void WebView::didRenderFrame(const WebCore::IntSize& contentsSize, const WebCore::IntRect& coveredRect) argument
522 m_client.didRenderFrame(this, contentsSize, coveredRect);
H A DCoordinatedLayerTreeHostProxy.cpp69 m_drawingAreaProxy->page()->didRenderFrame(graphicsState.contentsSize, graphicsState.coveredRect);
H A DWebView.h108 const WebCore::IntSize& contentsSize() const { return m_contentsSize; } function in class:WebKit::WebView
154 virtual void didRenderFrame(const WebCore::IntSize& contentsSize, const WebCore::IntRect& coveredRect) override;
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DPageOverlay.cpp88 return IntRect(IntPoint(), frameView->contentsSize());
92 return IntRect(IntPoint(), frameView->contentsSize());
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/coordinated/
H A DCoordinatedGraphicsState.h183 IntSize contentsSize; member in struct:WebCore::CoordinatedGraphicsState
/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DPopupMenuWin.h102 virtual IntSize contentsSize() const override;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/CoordinatedGraphics/
H A DWKView.h40 typedef void (*WKViewPageDidRenderFrameCallback)(WKViewRef view, WKSize contentsSize, WKRect coveredRect, const void* clientInfo);
H A DWKView.cpp200 const WebCore::IntSize& size = toImpl(viewRef)->contentsSize();
/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DViewClientEfl.cpp110 void ViewClientEfl::didRenderFrame(WKViewRef, WKSize contentsSize, WKRect coveredRect, const void* clientInfo) argument
114 ewkView->pageViewportController().didRenderFrame(toIntSize(contentsSize), toIntRect(coveredRect));
/macosx-10.10/WebCore-7600.1.25/dom/
H A DViewportArguments.cpp269 float computeMinimumScaleFactorForContentContained(const ViewportAttributes& result, const IntSize& visibleViewport, const IntSize& contentsSize) argument
272 return std::max<float>(result.minimumScale, std::max(viewportSize.width() / contentsSize.width(), viewportSize.height() / contentsSize.height()));
/macosx-10.10/WebCore-7600.1.25/platform/
H A DScrollView.h226 virtual IntSize contentsSize() const override; // Always at least as big as the visibleWidth()/visibleHeight().
227 int contentsWidth() const { return contentsSize().width(); }
228 int contentsHeight() const { return contentsSize().height(); }
H A DScrollableArea.h182 virtual IntSize contentsSize() const = 0;
190 // The totalContentsSize() is equivalent to the contentsSize() plus the header and footer heights.
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DPageClient.h142 virtual void didRenderFrame(const WebCore::IntSize& contentsSize, const WebCore::IntRect& coveredRect) = 0;
275 virtual WebCore::FloatSize contentsSize() const = 0;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DWKContentView.mm450 CGSize contentsSize = layerTreeTransaction.contentsSize();
451 CGRect contentBounds = { CGPointZero, contentsSize };
H A DWebPageProxyIOS.mm220 FloatSize contentsSize = m_pageClient.contentsSize();
221 FloatRect documentRect = FloatRect(FloatPoint(), contentsSize);
241 return FrameView::rectForViewportConstrainedObjects(enclosingLayoutRect(constrainedUnobscuredRect), roundedLayoutSize(contentsSize), displayedContentScale, false, StickToViewportBounds);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_view.cpp764 WKSize contentsSize = WKViewGetContentsSize(impl->wkView()); local
766 *width = contentsSize.width;
768 *height = contentsSize.height;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DTextureMapperGL.h145 virtual bool canReuseWith(const IntSize& contentsSize, Flags = 0);
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderListBox.h124 virtual IntSize contentsSize() const override;
/macosx-10.10/WebKit2-7600.1.25/Shared/mac/
H A DRemoteLayerTreeTransaction.h186 WebCore::IntSize contentsSize() const { return m_contentsSize; } function in class:WebKit::RemoteLayerTreeTransaction

Completed in 292 milliseconds

123