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

  /external/chromium_org/content/shell/tools/plugin/
test_object.h 38 NPClass* GetTestClass();
TestObject.cpp 48 static NPObject* testAllocate(NPP npp, NPClass* theClass);
55 static NPClass g_test_class = {
100 static NPObject* testAllocate(NPP npp, NPClass* /*theClass*/) {
217 NPClass* GetTestClass() { return &g_test_class; }
PluginObject.h 80 extern NPClass* createPluginClass(void);
PluginTest.h 121 NPObject* NPN_CreateObject(NPClass*);
178 static_cast<Object*>(pluginTest->NPN_CreateObject(npClass()));
231 static NPObject* NP_Allocate(NPP npp, NPClass* aClass) { return new T; }
273 static NPClass* npClass() {
274 static NPClass npClass = {
276 0, // NPClass::invalidate
282 0, // NPClass::setProperty
284 0, // NPClass::enumerat
    [all...]
PluginObject.cpp 122 static NPObject* pluginAllocate(NPP npp, NPClass*);
128 static NPClass pluginClass_ = {
131 0, // NPClass::invokeDefault,
133 0, // NPClass::removeProperty
134 0, // NPClass::enumerate
135 0, // NPClass::construct
138 NPClass* createPluginClass(void) {
139 NPClass* pluginClass = new NPClass;
    [all...]
PluginTest.cpp 190 NPObject* PluginTest::NPN_CreateObject(NPClass* npClass) {
191 return browser->createobject(m_npp, npClass);
main.cpp 56 static NPClass* pluginObjectClass = 0;
82 // Create a copy of the PluginObject NPClass that we can trash on shutdown.
137 // Trash the PluginObject NPClass so that the process will deterministically
140 // Note that we leak the NPClass copy, to act as a guard for the lifetime of
142 memset(pluginObjectClass, 0xf00dbeef, sizeof(NPClass));
  /external/chromium_org/content/test/plugin/
plugin_npobject_identity_test.cc 16 static NPObject* Allocate(NPP npp, NPClass* npclass) {
25 NPClass* GetNPThingyClass() {
26 static NPClass plugin_class = {
plugin_delete_plugin_in_deallocate_test.cc 19 static NPObject* Allocate(NPP npp, NPClass* npclass) {
46 NPClass* GetDeletePluginInDeallocateTestClass() {
47 static NPClass plugin_class = {
  /external/chromium_org/content/child/npapi/
npobject_proxy.h 94 static const NPClass* npclass() { return &npclass_proxy_; } function in class:content::NPObjectProxy
111 static NPObject* NPAllocate(NPP, NPClass*);
116 static NPClass npclass_proxy_;
npobject_proxy.cc 25 NPClass NPObjectProxy::npclass_proxy_ = {
106 NPObject* NPObjectProxy::NPAllocate(NPP, NPClass*) {
  /external/chromium_org/third_party/npapi/bindings/
npruntime.h 83 described by an NPClass.
86 typedef struct NPClass NPClass;
251 typedef NPObject *(*NPAllocateFunctionPtr)(NPP npp, NPClass *aClass);
299 struct NPClass
321 #define NP_CLASS_STRUCT_VERSION_HAS_ENUM(npclass) \
322 ((npclass)->structVersion >= NP_CLASS_STRUCT_VERSION_ENUM)
324 #define NP_CLASS_STRUCT_VERSION_HAS_CTOR(npclass) \
325 ((npclass)->structVersion >= NP_CLASS_STRUCT_VERSION_CTOR)
328 NPClass *_class
    [all...]
npfunctions.h 101 typedef NPObject* (*NPN_CreateObjectProcPtr)(NPP npp, NPClass *aClass);
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npruntime.h 44 * Changed NPHasPropertyFunctionPtr and NPHasMethodFunctionPtr to take NPClass
111 described by an NPClass.
114 typedef struct NPClass NPClass;
277 typedef NPObject *(*NPAllocateFunctionPtr)(NPP npp, NPClass *aClass);
321 struct NPClass
340 #define NP_CLASS_STRUCT_VERSION_HAS_ENUM(npclass) \
341 ((npclass)->structVersion >= NP_CLASS_STRUCT_VERSION_ENUM)
344 NPClass *_class;
357 NPObject *NPN_CreateObject(NPP npp, NPClass *aClass)
    [all...]
npupp.h 376 typedef NPObject* (* NP_LOADDS NPN_CreateObjectUPP)(NPP npp, NPClass *aClass);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
npruntime_impl.h 50 NPObject *_NPN_CreateObject(NPP, NPClass*);
npruntime.cpp 266 NPObject *_NPN_CreateObject(NPP npp, NPClass* npClass)
268 ASSERT(npClass);
270 if (npClass) {
272 if (npClass->allocate != 0)
273 npObject = npClass->allocate(npp, npClass);
277 npObject->_class = npClass;
NPV8Object.cpp 70 static NPObject* allocV8NPObject(NPP, NPClass*)
82 static NPClass V8NPObjectClass = {
  /external/chromium_org/third_party/WebKit/public/web/
WebBindings.h 64 BLINK_EXPORT static NPObject* createObject(NPP, NPClass*);
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 61 NPObject* WebBindings::createObject(NPP npp, NPClass* npClass)
63 return _NPN_CreateObject(npp, npClass);
  /external/chromium_org/third_party/npapi/npspy/common/
npn_gate.cpp 565 NPObject* NPN_CreateObject(NPP id, NPClass *cl)

Completed in 249 milliseconds