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

  /external/webkit/WebCore/plugins/symbian/
PluginViewSymbian.cpp 134 m_npWindow.ws_info = (void*)(context->platformContext());
262 m_npWindow.x = m_windowRect.x();
263 m_npWindow.y = m_windowRect.y();
265 m_npWindow.clipRect.left = m_clipRect.x();
266 m_npWindow.clipRect.top = m_clipRect.y();
267 m_npWindow.clipRect.right = m_clipRect.width();
268 m_npWindow.clipRect.bottom = m_clipRect.height();
272 m_npWindow.x = 0;
273 m_npWindow.y = 0;
275 m_npWindow.clipRect.left = 0
    [all...]
  /external/webkit/WebCore/plugins/gtk/
PluginViewGtk.cpp 142 ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth);
218 const unsigned int drawableDepth = ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth;
527 m_npWindow.x = m_windowRect.x();
528 m_npWindow.y = m_windowRect.y();
529 m_npWindow.width = m_windowRect.width();
530 m_npWindow.height = m_windowRect.height();
532 m_npWindow.clipRect.left = m_clipRect.x();
533 m_npWindow.clipRect.top = m_clipRect.y();
534 m_npWindow.clipRect.right = m_clipRect.width();
535 m_npWindow.clipRect.bottom = m_clipRect.height()
    [all...]
  /external/webkit/WebCore/plugins/mac/
PluginViewMac.cpp 407 m_npWindow.type = NPWindowTypeWindow;
411 m_npWindow.type = NPWindowTypeDrawable;
417 m_npWindow.window = (void*)&m_npCgContext;
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()
    [all...]
  /external/webkit/WebCore/plugins/qt/
PluginViewQt.cpp 117 ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth);
180 const int drawableDepth = ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth;
487 m_npWindow.x = m_windowRect.x();
488 m_npWindow.y = m_windowRect.y();
490 m_npWindow.clipRect.left = m_clipRect.x();
491 m_npWindow.clipRect.top = m_clipRect.y();
492 m_npWindow.clipRect.right = m_clipRect.width();
493 m_npWindow.clipRect.bottom = m_clipRect.height();
495 m_npWindow.x = 0;
496 m_npWindow.y = 0
    [all...]
  /external/webkit/WebCore/plugins/android/
PluginViewAndroid.cpp 174 m_npWindow.type = NPWindowTypeDrawable;
175 m_npWindow.window = 0;
284 IntRect rect = IntRect(m_npWindow.x, m_npWindow.y,
285 m_npWindow.width, m_npWindow.height);
432 // the m_npWindow is relative to the page
433 m_npWindow.x = m_pageRect.x();
434 m_npWindow.y = m_pageRect.y();
435 m_npWindow.width = m_pageRect.width()
    [all...]
  /external/webkit/WebCore/plugins/win/
PluginViewWin.cpp 524 m_npWindow.type = NPWindowTypeDrawable;
525 m_npWindow.window = hdc;
790 m_npWindow.x = r.x();
791 m_npWindow.y = r.y();
793 m_npWindow.width = r.width();
794 m_npWindow.height = r.height();
796 m_npWindow.clipRect.right = r.width();
797 m_npWindow.clipRect.bottom = r.height();
800 m_npWindow.x = p.x();
801 m_npWindow.y = p.y()
    [all...]
  /external/webkit/WebCore/plugins/
PluginView.cpp 380 m_npWindow.window = 0;
385 m_plugin->pluginFuncs()->setwindow(m_instance, &m_npWindow);
391 if (m_isWindowed && m_npWindow.ws_info)
392 delete (NPSetWindowCallbackStruct *)m_npWindow.ws_info;
393 m_npWindow.ws_info = 0;
966 memset(&m_npWindow, 0, sizeof(m_npWindow));
    [all...]
PluginView.h 335 NPWindow m_npWindow;

Completed in 146 milliseconds