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

1 2 3

  /external/webkit/Source/WebKit/chromium/public/
WebWidgetClient.h 81 virtual WebRect windowRect() { return WebRect(); }
  /external/webkit/Source/WebCore/platform/
Widget.cpp 72 IntRect Widget::convertFromContainingWindow(const IntRect& windowRect) const
75 IntRect parentRect = parentScrollView->convertFromContainingWindow(windowRect);
78 return convertFromContainingWindowToRoot(this, windowRect);
  /external/webkit/Tools/WebKitTestRunner/mac/
PlatformWebViewMac.mm 35 NSRect windowRect = NSOffsetRect(rect, -10000, [[[NSScreen screens] objectAtIndex:0] frame].size.height - rect.size.height + 10000);
36 m_window = [[NSWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.cpp 120 IntRect windowRect =
122 m_webPlugin->paint(canvas, windowRect);
304 IntRect windowRect, clipRect;
306 calculateGeometry(frameRect(), windowRect, clipRect, cutOutRects);
308 m_webPlugin->updateGeometry(windowRect, clipRect, cutOutRects, isVisible());
555 IntRect& windowRect,
559 windowRect = IntRect(
564 clipRect.move(-windowRect.x(), -windowRect.y());
ChromeClientImpl.cpp 181 FloatRect ChromeClientImpl::windowRect()
201 return windowRect();
577 WebRect windowRect = m_webView->client()->windowRect();
578 screenRect.move(windowRect.x, windowRect.y);
WebPluginContainerImpl.h 139 WebCore::IntRect& windowRect,
  /external/webkit/Source/WebCore/platform/qt/
QWebPageClient.h 96 virtual QRectF windowRect() const = 0;
  /external/webkit/Source/WebKit/gtk/webkit/
webkitviewportattributes.cpp 524 IntRect windowRect(webView->priv->corePage->chrome()->windowRect());
525 priv->deviceWidth = windowRect.width();
526 priv->deviceHeight = windowRect.height();
  /external/webkit/Tools/TestWebKitAPI/mac/
PlatformWebViewMac.mm 37 NSRect windowRect = NSOffsetRect(rect, -10000, [[[NSScreen screens] objectAtIndex:0] frame].size.height - rect.size.height + 10000);
38 m_window = [[NSWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
ChromeClientQt.cpp 121 windowRect represents the rect of the Window, including all interface elements
125 FloatRect ChromeClientQt::windowRect()
129 return platformPageClient()->windowRect();
402 void ChromeClientQt::invalidateWindow(const IntRect& windowRect, bool)
409 backingStore->invalidate(windowRect);
412 Q_UNUSED(windowRect);
416 void ChromeClientQt::invalidateContentsAndWindow(const IntRect& windowRect, bool immediate)
420 QRect rect(windowRect);
425 QMetaObject::invokeMethod(m_webPage, "repaintRequested", Qt::QueuedConnection, Q_ARG(QRect, windowRect));
431 void ChromeClientQt::invalidateContentsForSlowScroll(const IntRect& windowRect, bool immediate
    [all...]
PageClientQt.h 88 virtual QRectF windowRect() const;
211 virtual QRectF windowRect() const;
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Surface.cpp 89 RECT windowRect;
90 if (!GetClientRect(getWindowHandle(), &windowRect))
98 resetSwapChain(windowRect.right - windowRect.left, windowRect.bottom - windowRect.top);
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.h 63 const IntRect& windowRect() const { return m_windowRect; }
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 289 RECT windowRect;
290 GetClientRect(m_fullscreenWindow->hwnd(), &windowRect);
291 m_fullscreenSize.setWidth(windowRect.right - windowRect.left);
292 m_fullscreenSize.setHeight(windowRect.bottom - windowRect.top);
  /external/webkit/Source/WebCore/inspector/
InspectorFrontendClientLocal.cpp 129 FloatRect frameRect = m_frontendPage->chrome()->windowRect();
  /external/webkit/Source/WebCore/page/
Chrome.h 90 FloatRect windowRect() const;
DOMWindow.cpp 1074 return static_cast<int>(page->chrome()->windowRect().height());
1086 return static_cast<int>(page->chrome()->windowRect().width());
1130 return static_cast<int>(page->chrome()->windowRect().x());
1142 return static_cast<int>(page->chrome()->windowRect().y());
    [all...]
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
ChromeClientEfl.h 43 virtual FloatRect windowRect();
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.h 49 virtual FloatRect windowRect();
  /external/webkit/Source/WebKit/wx/WebKitSupport/
ChromeClientWx.h 46 virtual FloatRect windowRect();
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.cpp 52 FloatRect ChromeClientWinCE::windowRect()
69 return windowRect();
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.cpp 95 FloatRect WebChromeClient::windowRect()
466 void WebChromeClient::invalidateWindow(const IntRect& windowRect, bool immediate)
469 m_webView->repaint(windowRect, false /*contentChanged*/, immediate, false /*repaintContentOnly*/);
472 void WebChromeClient::invalidateContentsAndWindow(const IntRect& windowRect, bool immediate)
475 m_webView->repaint(windowRect, true /*contentChanged*/, immediate /*immediate*/, false /*repaintContentOnly*/);
478 void WebChromeClient::invalidateContentsForSlowScroll(const IntRect& windowRect, bool immediate)
481 m_webView->repaint(windowRect, true /*contentChanged*/, immediate, true /*repaintContentOnly*/);
  /external/webkit/Source/WebKit/wince/
WebView.cpp 115 RECT windowRect;
116 frameRect(&windowRect);
117 view()->resize(IntRect(windowRect).size());
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 59 virtual FloatRect windowRect();
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.h 45 virtual WebCore::FloatRect windowRect();

Completed in 897 milliseconds

1 2 3