screenRect         41 Source/core/css/MediaValues.cpp     int deviceWidth = static_cast<int>(screenRect(frame->view()).width());
screenRect         50 Source/core/css/MediaValues.cpp     int deviceHeight = static_cast<int>(screenRect(frame->view()).height());
screenRect        213 Source/core/dom/Element.h     IntRect screenRect() const;
screenRect        110 Source/core/fetch/ResourceLoadPriorityOptimizer.cpp void ResourceLoadPriorityOptimizer::notifyImageResourceVisibility(ImageResource* img, VisibilityStatus status, const LayoutRect& screenRect)
screenRect        116 Source/core/fetch/ResourceLoadPriorityOptimizer.cpp     if (!screenRect.isEmpty() && status == Visible)
screenRect        117 Source/core/fetch/ResourceLoadPriorityOptimizer.cpp         screenArea += static_cast<uint32_t>(screenRect.width() * screenRect.height());
screenRect         55 Source/core/frame/Screen.cpp         return lroundf(screenRect(m_frame->view()).height() * host->deviceScaleFactor());
screenRect         56 Source/core/frame/Screen.cpp     return static_cast<unsigned>(screenRect(m_frame->view()).height());
screenRect         65 Source/core/frame/Screen.cpp         return lroundf(screenRect(m_frame->view()).width() * host->deviceScaleFactor());
screenRect         66 Source/core/frame/Screen.cpp     return static_cast<unsigned>(screenRect(m_frame->view()).width());
screenRect         46 Source/platform/PlatformScreen.h PLATFORM_EXPORT FloatRect screenRect(Widget*);
screenRect        248 Source/platform/graphics/skia/NativeImageSkia.cpp     SkRect screenRect;
screenRect        249 Source/platform/graphics/skia/NativeImageSkia.cpp     context->getTotalMatrix().mapRect(&screenRect, destRect);
screenRect        250 Source/platform/graphics/skia/NativeImageSkia.cpp     float realScaleX = screenRect.width() / srcRect.width();
screenRect        251 Source/platform/graphics/skia/NativeImageSkia.cpp     float realScaleY = screenRect.height() / srcRect.height();
screenRect        514 Source/web/ChromeClientImpl.cpp     IntRect screenRect(rect);
screenRect        518 Source/web/ChromeClientImpl.cpp         screenRect.move(windowRect.x, windowRect.y);
screenRect        521 Source/web/ChromeClientImpl.cpp     return screenRect;
screenRect         80 Source/web/tests/PopupContainerTest.cpp     const FloatRect screenRect(0, 0, screenMaxX, screenMaxY);
screenRect         84 Source/web/tests/PopupContainerTest.cpp     return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL, rtlOffset, verticalOffset, transformOffset, content, needToResizeView);
screenRect         90 Source/web/tests/PopupContainerTest.cpp     const FloatRect screenRect(0, 0, screenMaxX, screenMaxY);
screenRect         93 Source/web/tests/PopupContainerTest.cpp     return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL, rtlOffset, 0, IntSize(), content, needToResizeView);
screenRect        946 Source/web/tests/WebViewTest.cpp     WebCore::IntPoint center = element->screenRect().center();