HomeSort by relevance Sort by last modified time
    Searched defs:npObject (Results 1 - 4 of 4) sorted by null

  /external/webkit/WebCore/bridge/c/
c_utility.cpp 92 NPObject* obj = instance->getObject();
101 NPObject* npObject = _NPN_CreateScriptObject(0, object, rootObject);
102 OBJECT_TO_NPVARIANT(npObject, *result);
127 NPObject* obj = variant->value.objectValue;
133 // Wrap NPObject in a CInstance.
  /external/webkit/WebCore/bindings/v8/
V8NPObject.cpp 58 // Params: holder could be HTMLEmbedElement or NPObject
61 NPObject* npObject;
76 npObject = v8ObjectToNPObject(scriptInstance->instance());
78 npObject = 0;
80 // The holder object is not a subtype of HTMLPlugInElement, it must be an NPObject which has three
83 return throwError("NPMethod called on non-NPObject", V8Proxy::ReferenceError);
85 npObject = v8ObjectToNPObject(args.Holder());
88 // Verify that our wrapper wasn't using a NPObject which has already been deleted.
89 if (!npObject || !_NPN_IsAlive(npObject)
    [all...]
npruntime.cpp 261 NPObject *_NPN_CreateObject(NPP npp, NPClass* npClass)
266 NPObject* npObject;
268 npObject = npClass->allocate(npp, npClass);
270 npObject = reinterpret_cast<NPObject*>(malloc(sizeof(NPObject)));
272 npObject->_class = npClass;
273 npObject->referenceCount = 1;
274 return npObject;
    [all...]
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.cpp     [all...]

Completed in 99 milliseconds