HomeSort by relevance Sort by last modified time
    Searched refs:m_windowRect (Results 1 - 14 of 14) sorted by null

  /external/webkit/WebCore/plugins/symbian/
PluginContainerSymbian.cpp 49 if (m_windowRect != rect || m_clipRegion != clip) {
50 m_windowRect = rect;
59 setGeometry(m_windowRect);
PluginContainerSymbian.h 44 QRect m_windowRect;
PluginViewSymbian.cpp 84 IntRect oldWindowRect = m_windowRect;
87 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
89 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
90 if (m_windowRect == oldWindowRect && m_clipRect == oldClipRect)
97 if (!m_windowRect.intersects(frameView->frameRect()))
256 platformPluginWidget()->setGeometry(m_windowRect);
262 m_npWindow.x = m_windowRect.x();
263 m_npWindow.y = m_windowRect.y();
277 m_npWindow.clipRect.right = m_windowRect.width()
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
EmbeddedWidget.cpp 99 IntRect oldWindowRect = m_windowRect;
102 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
104 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
109 if (m_windowRect == oldWindowRect && m_clipRect == oldClipRect)
127 if (m_windowRect != oldWindowRect)
128 ::MoveWindow(m_window, m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.height(), TRUE);
    [all...]
EmbeddedWidget.h 82 WebCore::IntRect m_windowRect; // Our window rect.
  /external/webkit/WebCore/plugins/mac/
PluginViewMac.cpp 421 m_npWindow.x = m_windowRect.x();
422 m_npWindow.y = m_windowRect.y();
423 m_npWindow.width = m_windowRect.width();
424 m_npWindow.height = m_windowRect.height();
427 m_npWindow.clipRect.left = max(0, m_windowRect.x());
428 m_npWindow.clipRect.top = max(0, m_windowRect.y());
429 m_npWindow.clipRect.right = m_windowRect.x() + m_windowRect.width();
430 m_npWindow.clipRect.bottom = m_windowRect.y() + m_windowRect.height()
    [all...]
  /external/webkit/WebCore/plugins/gtk/
PluginViewGtk.cpp 125 IntRect oldWindowRect = m_windowRect;
128 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
130 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
132 if (platformPluginWidget() && (m_windowRect != oldWindowRect || m_clipRect != oldClipRect))
136 if (!m_isWindowed && m_windowRect.size() != oldWindowRect.size()) {
141 m_windowRect.width(), m_windowRect.height(),
155 if (!m_windowRect.intersects(frameView->frameRect()))
224 m_windowRect.width()
    [all...]
  /external/webkit/WebCore/plugins/qt/
PluginViewQt.cpp 102 IntRect oldWindowRect = m_windowRect;
105 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
107 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
109 if (m_windowRect == oldWindowRect && m_clipRect == oldClipRect)
112 if (!m_isWindowed && m_windowRect.size() != oldWindowRect.size()) {
116 m_drawable = XCreatePixmap(QX11Info::display(), QX11Info::appRootWindow(), m_windowRect.width(), m_windowRect.height(),
129 if (!m_windowRect.intersects(frameView->frameRect()))
208 offset.x() + m_windowRect.x() + exposedRect.x(), offset.y() + m_windowRect.y() + exposedRect.y()
    [all...]
  /external/webkit/WebCore/platform/
PopupMenu.h 104 const IntRect& windowRect() const { return m_windowRect; }
168 IntRect m_windowRect;
  /external/webkit/WebCore/platform/win/
PopupMenuWin.cpp 142 m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.height(),
149 ::MoveWindow(m_popup, m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.height(), false);
165 DWORD slideDirection = (m_windowRect.y() < viewRect.top + view->contentsToWindow(r.location()).y()) ? AW_VER_NEGATIVE : AW_VER_POSITIVE;
369 m_windowRect = popupRect
    [all...]
  /external/webkit/WebCore/plugins/win/
PluginViewWin.cpp 423 IntRect oldWindowRect = m_windowRect;
427 m_windowRect = frameView->contentsToWindow(frameRect());
429 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
432 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
434 if (platformPluginWidget() && (!m_haveUpdatedPluginWidget || m_windowRect != oldWindowRect || m_clipRect != oldClipRect)) {
452 if (!m_haveUpdatedPluginWidget || m_windowRect != oldWindowRect)
453 ::MoveWindow(platformPluginWidget(), m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.height(), TRUE)
    [all...]
  /external/webkit/WebCore/plugins/android/
PluginViewAndroid.cpp 408 /* Our widget needs to recompute its m_windowRect which then sets
664 m_windowRect = frameView->contentsToWindow(frameRect());
669 m_pageRect = m_windowRect;
  /external/webkit/WebCore/plugins/
PluginView.h 412 IntRect m_windowRect; // Our window rect.
PluginView.cpp 125 IntRect clipRect(m_windowRect);
    [all...]

Completed in 304 milliseconds