HomeSort by relevance Sort by last modified time
    Searched full:npclass (Results 1 - 25 of 38) sorted by null

1 2

  /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/third_party/WebKit/Source/testing/plugin/
PluginTest.h 88 NPObject* NPN_CreateObject(NPClass*);
139 Object* object = static_cast<Object*>(pluginTest->NPN_CreateObject(npClass()));
201 static NPObject* NP_Allocate(NPP npp, NPClass* aClass)
241 static NPClass* npClass()
243 static NPClass npClass = {
247 0, // NPClass::invalidate
253 0, // NPClass::setProperty
255 0, // NPClass::enumerat
    [all...]
TestObject.cpp 37 static NPObject *testAllocate(NPP npp, NPClass *theClass);
41 static NPClass testClass = {
57 NPClass *getTestClass(void)
110 static NPObject* testAllocate(NPP npp, NPClass* /*theClass*/)
TestObject.h 29 NPClass* getTestClass(void);
PluginTest.cpp 206 NPObject* PluginTest::NPN_CreateObject(NPClass* npClass)
208 return browser->createobject(m_npp, npClass);
PluginObject.h 75 extern NPClass* createPluginClass(void);
PluginObject.cpp 97 static NPObject* pluginAllocate(NPP npp, NPClass*);
103 static NPClass pluginClass_ = {
110 0, // NPClass::invokeDefault,
114 0, // NPClass::removeProperty
115 0, // NPClass::enumerate
116 0, // NPClass::construct
119 NPClass* createPluginClass(void)
121 NPClass* pluginClass = new NPClass;
    [all...]
main.cpp 51 static NPClass* pluginObjectClass = 0;
77 // Create a copy of the PluginObject NPClass that we can trash on shutdown.
132 // Trash the PluginObject NPClass so that the process will deterministically
135 // Note that we leak the NPClass copy, to act as a guard for the lifetime of
137 memset(pluginObjectClass, 0xf00dbeef, sizeof(NPClass));
  /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_util.cc 25 // NPObject. Plugins always ignore the functions in NPClass (except allocate
29 // uses the function pointers in its NPClass structure.
180 if (variant.value.objectValue->_class == NPObjectProxy::npclass()) {
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppBoundClass.cpp 107 // with NPObject/NPClass.
110 // An NPClass associates static functions of CppNPObject with the
112 static NPClass npClass;
115 static NPObject* allocate(NPP, NPClass*);
146 // Build CppNPObject's static function pointers into an NPClass, for use
148 NPClass CppNPObject::npClass = {
162 NPObject* CppNPObject::allocate(NPP npp, NPClass* aClass)
337 // Create an NPObject using our static NPClass. The first argument (
    [all...]
  /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...]
  /external/chromium/webkit/glue/
cpp_bound_class.cc 74 // with NPObject/NPClass.
77 // An NPClass associates static functions of CppNPObject with the
79 static NPClass np_class_;
82 static NPObject* allocate(NPP npp, NPClass* aClass);
115 // Build CppNPObject's static function pointers into an NPClass, for use
117 NPClass CppNPObject::np_class_ = {
131 /* static */ NPObject* CppNPObject::allocate(NPP npp, NPClass* aClass) {
308 // Create an NPObject using our static NPClass. The first argument (a
cpp_variant_unittest.cc 56 NPObject* MockNPAllocate(NPP npp, NPClass* aClass) {
61 // Ignore npp and NPClass
73 static NPClass void_class = { NP_CLASS_STRUCT_VERSION,
457 NPClass array_like_class = {
  /external/chromium_org/webkit/renderer/
cpp_bound_class.cc 78 // with NPObject/NPClass.
81 // An NPClass associates static functions of CppNPObject with the
83 static NPClass np_class_;
86 static NPObject* allocate(NPP npp, NPClass* aClass);
119 // Build CppNPObject's static function pointers into an NPClass, for use
121 NPClass CppNPObject::np_class_ = {
135 /* static */ NPObject* CppNPObject::allocate(NPP npp, NPClass* aClass) {
305 // Create an NPObject using our static NPClass. The first argument has type
cpp_variant_unittest.cc 58 NPObject* MockNPAllocate(NPP npp, NPClass* aClass) {
63 // Ignore npp and NPClass
75 static NPClass void_class = { NP_CLASS_STRUCT_VERSION,
478 NPClass array_like_class = {
  /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...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime.cpp 264 NPObject *_NPN_CreateObject(NPP npp, NPClass* npClass)
266 ASSERT(npClass);
268 if (npClass) {
270 if (npClass->allocate != 0)
271 npObject = npClass->allocate(npp, npClass);
275 npObject->_class = npClass;
npruntime_impl.h 50 NPObject *_NPN_CreateObject(NPP, NPClass*);
  /external/chromium_org/content/renderer/pepper/
plugin_object.cc 40 NPObject* WrapperClass_Allocate(NPP npp, NPClass* unused) {
237 const NPClass wrapper_class = {
298 const_cast<NPClass*>(&wrapper_class)));
host_var_tracker_unittest.cc 34 NPClass g_tracked_npclass = {
message_channel.cc 151 // Implementations of NPClass functions. These are here to:
156 NPObject* MessageChannelAllocate(NPP npp, NPClass* the_class) {
306 NPClass message_channel_class = {
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 62 NPObject* WebBindings::createObject(NPP npp, NPClass* npClass)
64 return _NPN_CreateObject(npp, npClass);
  /external/chromium_org/content/browser/renderer_host/java/
java_bound_object.cc 51 // callbacks, which are registered by our NPClass. These methods simply
56 static const NPClass kNPClass;
58 static NPObject* Allocate(NPP npp, NPClass* np_class);
69 const NPClass JavaNPObject::kNPClass = {
83 NPObject* JavaNPObject::Allocate(NPP npp, NPClass* np_class) {
785 NPObject* np_object = WebBindings::createObject(0, const_cast<NPClass*>(
    [all...]

Completed in 649 milliseconds

1 2