Searched defs:npp (Results 1 - 25 of 45) sorted by relevance

12

/external/webkit/Source/WebCore/platform/qt/
H A DPlatformBridgeQt.cpp31 bool PlatformBridge::popupsAllowed(NPP npp) argument
33 if (npp && npp->ndata)
34 return static_cast<PluginView*>(npp->ndata)->arePopupsAllowed();
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DDocumentOpenInDestroyStream.cpp30 extern bool testDocumentOpen(NPP npp);
36 DocumentOpenInDestroyStream(NPP npp, const string& identifier) argument
37 : PluginTest(npp, identifier)
H A DEvaluateJSAfterRemovingPluginElement.cpp46 EvaluateJSAfterRemovingPluginElement::EvaluateJSAfterRemovingPluginElement(NPP npp, const string& identifier) argument
47 : PluginTest(npp, identifier)
H A DNullNPPGetValuePointer.cpp45 static PluginTest::Register<NullNPPGetValuePointer> registrar("null-npp-getvalue-pointer");
47 NullNPPGetValuePointer::NullNPPGetValuePointer(NPP npp, const string& identifier) argument
48 : PluginTest(npp, identifier)
H A DGetURLWithJavaScriptURLDestroyingPlugin.cpp34 GetURLWithJavaScriptURLDestroyingPlugin(NPP npp, const string& identifier) argument
35 : PluginTest(npp, identifier)
H A DGetUserAgentWithNullNPPFromNPPNew.cpp38 GetUserAgentWithNullNPPFromNPPNew(NPP npp, const string& identifier) argument
39 : PluginTest(npp, identifier)
56 static PluginTest::Register<GetUserAgentWithNullNPPFromNPPNew> getUserAgentWithNullNPPFromNPPNew("get-user-agent-with-null-npp-from-npp-new");
H A DNPRuntimeObjectFromDestroyedPlugin.cpp32 NPRuntimeObjectFromDestroyedPlugin(NPP npp, const string& identifier) argument
33 : PluginTest(npp, identifier)
H A DNPRuntimeRemoveProperty.cpp33 NPRuntimeRemoveProperty(NPP npp, const string& identifier) argument
34 : PluginTest(npp, identifier)
H A DPassDifferentNPPStruct.cpp37 PassDifferentNPPStruct(NPP npp, const string& identifier) argument
38 : PluginTest(npp, identifier)
70 static PluginTest::Register<PassDifferentNPPStruct> getValueNetscapeWindow("pass-different-npp-struct");
H A DPluginScriptableNPObjectInvokeDefault.cpp33 PluginScriptableNPObjectInvokeDefault(NPP npp, const string& identifier) argument
34 : PluginTest(npp, identifier)
H A DNPPSetWindowCalledDuringDestruction.cpp55 static PluginTest::Register<NPPSetWindowCalledDuringDestruction> registrar("npp-set-window-called-during-destruction");
57 NPPSetWindowCalledDuringDestruction::NPPSetWindowCalledDuringDestruction(NPP npp, const string& identifier) argument
58 : PluginTest(npp, identifier)
H A DNPDeallocateCalledBeforeNPShutdown.cpp34 NPDeallocateCalledBeforeNPShutdown(NPP npp, const string& identifier) argument
35 : PluginTest(npp, identifier)
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Helpers.cpp40 v8::Local<v8::Context> toV8Context(NPP npp, NPObject* npObject) argument
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
H A DGetValueNetscapeWindow.cpp36 GetValueNetscapeWindow(NPP npp, const string& identifier) argument
37 : PluginTest(npp, identifier)
H A DWindowGeometryInitializedBeforeSetWindow.cpp36 WindowGeometryInitializedBeforeSetWindow(NPP npp, const string& identifier) argument
37 : PluginTest(npp, identifier)
H A DWindowlessPaintRectCoordinates.cpp46 WindowlessPaintRectCoordinates::WindowlessPaintRectCoordinates(NPP npp, const string& identifier) argument
47 : PluginTest(npp, identifier)
H A DWindowRegionIsSetToClipRect.cpp46 WindowRegionIsSetToClipRect::WindowRegionIsSetToClipRect(NPP npp, const string& identifier) argument
47 : PluginTest(npp, identifier)
H A DDrawsGradient.cpp48 DrawsGradient::DrawsGradient(NPP npp, const string& identifier) argument
49 : WindowedPluginTest(npp, identifier)
/external/webkit/Source/WebCore/plugins/
H A DPluginMainThreadScheduler.cpp44 void PluginMainThreadScheduler::scheduleCall(NPP npp, MainThreadFunction function, void* userData) argument
48 CallQueueMap::iterator it = m_callQueueMap.find(npp);
60 void PluginMainThreadScheduler::registerPlugin(NPP npp) argument
64 ASSERT(!m_callQueueMap.contains(npp));
65 m_callQueueMap.set(npp, Deque<Call>());
68 void PluginMainThreadScheduler::unregisterPlugin(NPP npp) argument
72 ASSERT(m_callQueueMap.contains(npp));
73 m_callQueueMap.remove(npp);
76 void PluginMainThreadScheduler::dispatchCallsForPlugin(NPP npp, const Deque<Call>& calls) argument
83 if (!m_callQueueMap.contains(npp))
[all...]
/external/webkit/Source/WebKit/android/plugins/
H A DPluginDebugAndroid.cpp63 void anp_logPluginEvent(void* npp, const ANPEvent* evt, int16_t returnVal, int elapsedTime) { argument
68 PLUGIN_LOG("%p EVENT::NULL", npp);
74 npp, returnVal, elapsedTime, inputActions[evt->data.key.action],
79 PLUGIN_LOG("%p EVENT::KEY[%d] unknown action", npp, returnVal);
85 anp_logPlugin("%p EVENT::MOUSE[%d] time=%d action=%s [%d %d]", npp,
89 anp_logPlugin("%p EVENT::MOUSE[%d] unknown action", npp, returnVal);
97 npp, returnVal, elapsedTime,
101 anp_logPlugin("%p EVENT::TOUCH[%d] unknown action", npp, returnVal);
108 npp, elapsedTime, evt->data.draw.data.bitmap.format,
113 npp, elapsedTim
[all...]
H A DPluginTimer.cpp36 void (*timerFunc)(NPP npp, uint32_t timerID))
110 void (*proc)(NPP npp, uint32_t timerID))
35 PluginTimer(PluginTimer** list, NPP instance, bool repeat, void (*timerFunc)(NPP npp, uint32_t timerID)) argument
109 schedule(NPP instance, uint32_t interval, bool repeat, void (*proc)(NPP npp, uint32_t timerID)) argument
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
H A DWindowedPluginTest.cpp32 WindowedPluginTest::WindowedPluginTest(NPP npp, const string& identifier) argument
33 : PluginTest(npp, identifier)
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNPRuntimeUtilities.cpp59 NPObject* createNPObject(NPP npp, NPClass* npClass) argument
65 npObject = npClass->allocate(npp, npClass);
/external/webkit/Source/WebCore/bridge/
H A Dnpruntime.cpp110 NPObject *_NPN_CreateObject(NPP npp, NPClass* aClass) argument
117 obj = aClass->allocate(npp, aClass);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/
H A DConvertPoint.cpp33 ConvertPoint(NPP npp, const string& identifier) argument
34 : PluginTest(npp, identifier)

Completed in 227 milliseconds

12