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

  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
NetscapePluginWin.cpp 160 NPEvent npEvent;
161 npEvent.event = WM_WINDOWPOSCHANGED;
162 npEvent.wParam = 0;
163 npEvent.lParam = reinterpret_cast<uintptr_t>(&windowpos);
165 NPP_HandleEvent(&npEvent);
171 npEvent.event = WM_PAINT;
172 npEvent.wParam = reinterpret_cast<uintptr_t>(windowsContext.hdc());
173 npEvent.lParam = reinterpret_cast<uintptr_t>(&dirtyWinRect);
175 NPP_HandleEvent(&npEvent);
    [all...]
  /external/webkit/Source/WebCore/plugins/win/
PluginViewWin.cpp 498 bool PluginView::dispatchNPEvent(NPEvent& npEvent)
505 if (m_plugin->pluginFuncs()->version < NPVERS_HAS_POPUPS_ENABLED_STATE && isWindowsMessageUserGesture(npEvent.event)) {
512 bool result = m_plugin->pluginFuncs()->event(m_instance, &npEvent);
542 NPEvent npEvent;
543 npEvent.event = WM_WINDOWPOSCHANGED;
544 npEvent.lParam = reinterpret_cast<uintptr_t>(&windowpos);
545 npEvent.wParam = 0;
547 dispatchNPEvent(npEvent);
    [all...]
  /external/webkit/Source/WebCore/plugins/symbian/
PluginViewSymbian.cpp 159 QEvent& npEvent = ev;
160 dispatchNPEvent(npEvent);
166 bool PluginView::dispatchNPEvent(NPEvent& event)
188 QEvent& npEvent = *(event->keyEvent()->qtEvent());
189 if (!dispatchNPEvent(npEvent))
241 QEvent& npEvent = mouseEvent;
242 if (!dispatchNPEvent(npEvent))
  /external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp 383 bool PluginView::dispatchNPEvent(NPEvent& event)
447 // source: https://developer.mozilla.org/en/NPEvent
462 XEvent npEvent;
463 initXEvent(&npEvent);
464 setXKeyEventSpecificFields(&npEvent, event);
466 if (!dispatchNPEvent(npEvent))
561 XEvent npEvent;
562 initXEvent(&npEvent);
567 setXButtonEventSpecificFields(&npEvent, event, postZoomPos);
569 setXMotionEventSpecificFields(&npEvent, event, postZoomPos)
    [all...]
  /external/webkit/Source/WebCore/plugins/gtk/
PluginViewGtk.cpp 99 bool PluginView::dispatchNPEvent(NPEvent& event)
279 NPEvent xEvent;
295 // source: https://developer.mozilla.org/en/NPEvent
412 NPEvent xEvent;
441 XEvent npEvent;
442 initXEvent(&npEvent);
444 XFocusChangeEvent& event = npEvent.xfocus;
449 dispatchNPEvent(npEvent);
454 XEvent npEvent;
455 initXEvent(&npEvent);
    [all...]

Completed in 155 milliseconds