HomeSort by relevance Sort by last modified time
    Searched refs:npp (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/content/shell/tools/plugin/Tests/
DocumentOpenInDestroyStream.cpp 34 extern bool testDocumentOpen(NPP npp);
40 DocumentOpenInDestroyStream(NPP npp, const string& identifier)
41 : PluginTest(npp, identifier)
GetURLWithJavaScriptURLDestroyingPlugin.cpp 38 GetURLWithJavaScriptURLDestroyingPlugin(NPP npp, const string& identifier)
39 : PluginTest(npp, identifier)
NPPNewFails.cpp 38 NPPNewFails(NPP npp, const string& identifier)
39 : PluginTest(npp, identifier)
54 static PluginTest::Register<NPPNewFails> nppNewFails("npp-new-fails");
EvaluateJSAfterRemovingPluginElement.cpp 40 EvaluateJSAfterRemovingPluginElement(NPP, const string& identifier);
50 EvaluateJSAfterRemovingPluginElement::EvaluateJSAfterRemovingPluginElement(NPP npp, const string& identifier)
51 : PluginTest(npp, identifier)
GetUserAgentWithNullNPPFromNPPNew.cpp 40 GetUserAgentWithNullNPPFromNPPNew(NPP npp, const string& identifier)
41 : PluginTest(npp, identifier)
62 static PluginTest::Register<GetUserAgentWithNullNPPFromNPPNew> getUserAgentWithNullNPPFromNPPNew("get-user-agent-with-null-npp-from-npp-new");
EvaluateJSWithinNPP_New.cpp 40 EvaluteJSWithinNPP_New(NPP, const string& identifier);
47 EvaluteJSWithinNPP_New::EvaluteJSWithinNPP_New(NPP npp, const string& identifier)
48 : PluginTest(npp, identifier)
60 static PluginTest::Register<EvaluteJSWithinNPP_New> registrar("evalute-js-within-npp-new");
FormValue.cpp 12 FormValue(NPP npp, const std::string& identifier)
13 : PluginTest(npp, identifier)
LeakWindowScriptableObject.cpp 11 LeakWindowScriptableObject(NPP npp, const string& identifier)
12 : PluginTest(npp, identifier)
NullNPPGetValuePointer.cpp 40 NullNPPGetValuePointer(NPP, const string& identifier);
49 static PluginTest::Register<NullNPPGetValuePointer> registrar("null-npp-getvalue-pointer");
51 NullNPPGetValuePointer::NullNPPGetValuePointer(NPP npp, const string& identifier)
52 : PluginTest(npp, identifier)
PassDifferentNPPStruct.cpp 36 // Passing a different NPP struct that has the same ndata value as the one passed to NPP_New should
41 PassDifferentNPPStruct(NPP npp, const string& identifier)
42 : PluginTest(npp, identifier)
54 NPP oldNPP = m_npp;
64 log("NPN_GetValue(NPNVprivateModeBool) with a different NPP struct failed with error %d", error);
68 log("NPN_GetValue(NPNVprivateModeBool) with a different NPP struct succeeded");
76 static PluginTest::Register<PassDifferentNPPStruct> getValueNetscapeWindow("pass-different-npp-struct");
PluginScriptableNPObjectInvokeDefault.cpp 37 PluginScriptableNPObjectInvokeDefault(NPP npp, const string& identifier)
38 : PluginTest(npp, identifier)
GetURLNotifyWithURLThatFailsToLoad.cpp 42 GetURLNotifyWithURLThatFailsToLoad(NPP npp, const string& identifier)
43 : PluginTest(npp, identifier)
InvokeDestroysPluginWithinNPP_New.cpp 40 InvokeDestroysPluginWithinNPP_New(NPP, const string& identifier);
47 InvokeDestroysPluginWithinNPP_New::InvokeDestroysPluginWithinNPP_New(NPP npp, const string& identifier)
48 : PluginTest(npp, identifier)
71 static PluginTest::Register<InvokeDestroysPluginWithinNPP_New> registrar("invoke-destroys-plugin-within-npp-new");
LogNPPSetWindow.cpp 38 LogNPPSetWindow(NPP, const string& identifier);
44 LogNPPSetWindow::LogNPPSetWindow(NPP npp, const string& identifier)
45 : PluginTest(npp, identifier)
65 static PluginTest::Register<LogNPPSetWindow> registrar("log-npp-set-window");
NPDeallocateCalledBeforeNPShutdown.cpp 38 NPDeallocateCalledBeforeNPShutdown(NPP npp, const string& identifier)
39 : PluginTest(npp, identifier)
NPRuntimeCallsWithNullNPP.cpp 34 NPRuntimeCallsWithNullNPP(NPP npp, const std::string& identifier)
35 : PluginTest(npp, identifier)
72 static PluginTest::Register<NPRuntimeCallsWithNullNPP> npRuntimeCallsWithNullNPP("npruntime-calls-with-null-npp");
NPRuntimeObjectFromDestroyedPlugin.cpp 36 NPRuntimeObjectFromDestroyedPlugin(NPP npp, const string& identifier)
37 : PluginTest(npp, identifier)
PluginScriptableObjectOverridesAllProperties.cpp 39 PluginScriptableObjectOverridesAllProperties(NPP npp, const string& identifier)
40 : PluginTest(npp, identifier)
SlowNPPNew.cpp 38 SlowNPPNew(NPP npp, const string& identifier)
39 : PluginTest(npp, identifier)
91 static PluginTest::Register<SlowNPPNew> slowNPPNew("slow-npp-new");
  /external/chromium_org/content/shell/tools/plugin/
PluginObject.h 46 NPP npp; member in struct:__anon12524
89 extern void testNPRuntime(NPP npp);
90 extern void pluginLog(NPP instance, const char* format, ...);
91 extern void pluginLogWithArguments(NPP instance,
94 extern bool testDocumentOpen(NPP npp);
95 extern bool testWindowOpen(NPP npp);
    [all...]
PluginObject.cpp 45 NPP instance,
80 void pluginLogWithArguments(NPP instance, const char* format, va_list args) {
105 void pluginLog(NPP instance, const char* format, ...) {
122 static NPObject* pluginAllocate(NPP npp, NPClass*);
265 browser->getvalue(plugin->npp, NPNVWindowNPObject, &windowScriptObject);
270 if (browser->invoke(plugin->npp,
427 browser->setvalue(plugin->npp,
442 if (browser->getvalue(obj->npp, NPNVPluginElementNPObject, &elementObject) ==
448 obj->npp, elementObject, styleIdentifier, &styleVariant) &
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 56 bool WebBindings::construct(NPP npp, NPObject* object, const NPVariant* args, uint32_t argCount, NPVariant* result)
58 return _NPN_Construct(npp, object, args, argCount, result);
61 NPObject* WebBindings::createObject(NPP npp, NPClass* npClass)
63 return _NPN_CreateObject(npp, npClass);
66 bool WebBindings::enumerate(NPP npp, NPObject* object, NPIdentifier** identifier, uint32_t* identifierCount)
68 return _NPN_Enumerate(npp, object, identifier, identifierCount);
71 bool WebBindings::evaluate(NPP npp, NPObject* object, NPString* script, NPVariant* result
    [all...]
  /external/chromium_org/third_party/npapi/bindings/
npruntime.h 251 typedef NPObject *(*NPAllocateFunctionPtr)(NPP npp, NPClass *aClass);
341 NPObject *NPN_CreateObject(NPP npp, NPClass *aClass);
367 bool NPN_Invoke(NPP npp, NPObject *npobj, NPIdentifier methodName,
369 bool NPN_InvokeDefault(NPP npp, NPObject *npobj, const NPVariant *args,
371 bool NPN_Evaluate(NPP npp, NPObject *npobj, NPString *script
    [all...]
npfunctions.h 51 typedef NPError (* NP_LOADDS NPP_NewProcPtr)(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc, char* argn[], char* argv[], NPSavedData* saved);
52 typedef NPError (* NP_LOADDS NPP_DestroyProcPtr)(NPP instance, NPSavedData** save);
53 typedef NPError (* NP_LOADDS NPP_SetWindowProcPtr)(NPP instance, NPWindow* window);
54 typedef NPError (* NP_LOADDS NPP_NewStreamProcPtr)(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype);
55 typedef NPError (* NP_LOADDS NPP_DestroyStreamProcPtr)(NPP instance, NPStream* stream, NPReason reason);
56 typedef int32_t (* NP_LOADDS NPP_WriteReadyProcPtr)(NPP instance, NPStream* stream);
57 typedef int32_t (* NP_LOADDS NPP_WriteProcPtr)(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer);
58 typedef void (* NP_LOADDS NPP_StreamAsFileProcPtr)(NPP instance, NPStream* stream, const char* fname);
59 typedef void (* NP_LOADDS NPP_PrintProcPtr)(NPP instance, NPPrint* platformPrint);
60 typedef int16_t (* NP_LOADDS NPP_HandleEventProcPtr)(NPP instance, void* event)
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npruntime.h 277 typedef NPObject *(*NPAllocateFunctionPtr)(NPP npp, NPClass *aClass);
357 NPObject *NPN_CreateObject(NPP npp, NPClass *aClass);
383 bool NPN_Invoke(NPP npp, NPObject *npobj, NPIdentifier methodName,
385 bool NPN_InvokeDefault(NPP npp, NPObject *npobj, const NPVariant *args,
387 bool NPN_Evaluate(NPP npp, NPObject *npobj, NPString *script
    [all...]

Completed in 301 milliseconds

1 2