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

  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
WindowlessPaintRectCoordinates.cpp 59 NPEvent* event = static_cast<NPEvent*>(typelessEvent);
  /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/bridge/
npapi.h 535 typedef EventRecord NPEvent;
537 typedef void* NPEvent;
540 typedef QEvent NPEvent;
547 } NPEvent;
554 } NPEvent;
556 typedef XEvent NPEvent;
558 typedef void* NPEvent;
  /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/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...]
  /external/webkit/Source/WebCore/plugins/
PluginView.h 347 bool dispatchNPEvent(NPEvent&);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
main.cpp 685 static int16_t handleEventWin(NPP instance, PluginObject* obj, NPEvent* event)
715 return handleEventWin(instance, obj, static_cast<NPEvent*>(event));
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 772 bool PluginView::dispatchNPEvent(NPEvent& event)
  /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...]

Completed in 33 milliseconds