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

  /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...]
PluginTest.cpp 206 NPObject* PluginTest::NPN_CreateObject(NPClass* npClass)
208 return browser->createobject(m_npp, npClass);
  /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;
  /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/WebKit/Source/web/
WebBindings.cpp 62 NPObject* WebBindings::createObject(NPP npp, NPClass* npClass)
64 return _NPN_CreateObject(npp, npClass);

Completed in 368 milliseconds