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

  /external/webkit/Source/WebCore/plugins/symbian/
PluginViewSymbian.cpp 143 m_npWindow.ws_info = (void*)(context->platformContext());
275 m_npWindow.x = m_windowRect.x();
276 m_npWindow.y = m_windowRect.y();
278 m_npWindow.clipRect.left = max(0, m_clipRect.x());
279 m_npWindow.clipRect.top = max(0, m_clipRect.y());
280 m_npWindow.clipRect.right = m_clipRect.x() + m_clipRect.width();
281 m_npWindow.clipRect.bottom = m_clipRect.y() + m_clipRect.height();
285 m_npWindow.x = m_windowRect.x();
286 m_npWindow.y = m_windowRect.y();
288 m_npWindow.clipRect.left = 0
    [all...]
  /external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp 160 ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth);
279 const int drawableDepth = ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth;
656 m_npWindow.x = m_windowRect.x();
657 m_npWindow.y = m_windowRect.y();
659 m_npWindow.x = 0;
660 m_npWindow.y = 0;
666 m_npWindow.clipRect.left = 0;
667 m_npWindow.clipRect.right = 0;
668 m_npWindow.clipRect.top = 0;
669 m_npWindow.clipRect.bottom = 0
    [all...]
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 396 m_npWindow.type = NPWindowTypeWindow;
400 m_npWindow.type = NPWindowTypeDrawable;
406 m_npWindow.window = (void*)&m_npCgContext;
412 m_npWindow.x = m_windowRect.x();
413 m_npWindow.y = m_windowRect.y();
414 m_npWindow.width = m_windowRect.width();
415 m_npWindow.height = m_windowRect.height();
418 m_npWindow.clipRect.left = max(0, m_windowRect.x());
419 m_npWindow.clipRect.top = max(0, m_windowRect.y());
420 m_npWindow.clipRect.right = m_windowRect.x() + m_windowRect.width()
    [all...]
  /external/webkit/Source/WebCore/plugins/gtk/
PluginViewGtk.cpp 151 ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth);
498 m_npWindow.x = m_windowRect.x();
499 m_npWindow.y = m_windowRect.y();
500 m_npWindow.width = m_windowRect.width();
501 m_npWindow.height = m_windowRect.height();
503 m_npWindow.clipRect.left = max(0, m_clipRect.x());
504 m_npWindow.clipRect.top = max(0, m_clipRect.y());
505 m_npWindow.clipRect.right = m_clipRect.x() + m_clipRect.width();
506 m_npWindow.clipRect.bottom = m_clipRect.y() + m_clipRect.height();
508 m_npWindow.x = 0
    [all...]
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 187 m_npWindow.type = NPWindowTypeDrawable;
188 m_npWindow.window = 0;
320 IntRect rect = IntRect(m_npWindow.x, m_npWindow.y,
321 m_npWindow.width, m_npWindow.height);
470 // the m_npWindow is relative to the page
471 m_npWindow.x = m_pageRect.x();
472 m_npWindow.y = m_pageRect.y();
473 m_npWindow.width = m_pageRect.width()
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.cpp 60 , m_npWindow()
361 m_npWindow.x = 0;
362 m_npWindow.y = 0;
364 m_npWindow.x = m_frameRect.x();
365 m_npWindow.y = m_frameRect.y();
367 m_npWindow.width = m_frameRect.width();
368 m_npWindow.height = m_frameRect.height();
369 m_npWindow.clipRect.top = m_clipRect.y();
370 m_npWindow.clipRect.left = m_clipRect.x();
371 m_npWindow.clipRect.bottom = m_clipRect.maxY()
    [all...]
NetscapePlugin.h 199 NPWindow m_npWindow;
  /external/webkit/Source/WebCore/plugins/win/
PluginViewWin.cpp 530 m_npWindow.type = NPWindowTypeDrawable;
531 m_npWindow.window = hdc;
787 m_npWindow.x = r.x();
788 m_npWindow.y = r.y();
790 m_npWindow.width = r.width();
791 m_npWindow.height = r.height();
793 m_npWindow.clipRect.right = r.width();
794 m_npWindow.clipRect.bottom = r.height();
797 m_npWindow.x = p.x();
798 m_npWindow.y = p.y()
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
NetscapePluginWin.cpp 82 m_npWindow.type = NPWindowTypeWindow;
83 m_npWindow.window = m_window;
150 m_npWindow.type = NPWindowTypeDrawable;
151 m_npWindow.window = windowsContext.hdc();
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp 155 m_npWindow.type = NPWindowTypeDrawable;
156 m_npWindow.window = 0;
157 m_npWindow.ws_info = callbackStruct;
166 delete static_cast<NPSetWindowCallbackStruct*>(m_npWindow.ws_info);
246 ASSERT(qtDrawable.depth() == static_cast<NPSetWindowCallbackStruct*>(m_npWindow.ws_info)->depth);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 109 sourceXInScreenSpace = sourceX + m_windowFrameInScreenCoordinates.x() + m_viewFrameInWindowCoordinates.x() + m_npWindow.x;
110 sourceYInScreenSpace = m_windowFrameInScreenCoordinates.y() + m_viewFrameInWindowCoordinates.y() + m_viewFrameInWindowCoordinates.height() - (sourceY + m_npWindow.y);
135 destX = sourceXInScreenSpace - (m_windowFrameInScreenCoordinates.x() + m_viewFrameInWindowCoordinates.x() + m_npWindow.x);
136 destY = m_windowFrameInScreenCoordinates.y() + m_viewFrameInWindowCoordinates.y() + m_viewFrameInWindowCoordinates.height() - (sourceYInScreenSpace + m_npWindow.y);
248 m_npWindow.window = &m_npCGContext;
  /external/webkit/Source/WebCore/plugins/
PluginView.cpp 388 m_npWindow.window = 0;
393 m_plugin->pluginFuncs()->setwindow(m_instance, &m_npWindow);
399 if (m_isWindowed && m_npWindow.ws_info)
400 delete (NPSetWindowCallbackStruct *)m_npWindow.ws_info;
401 m_npWindow.ws_info = 0;
972 memset(&m_npWindow, 0, sizeof(m_npWindow));
    [all...]
PluginView.h 388 NPWindow m_npWindow;

Completed in 183 milliseconds