Home
last modified time | relevance | path

Searched refs:np_object (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/content/renderer/pepper/
Dppb_var_deprecated_impl.cc87 OBJECT_TO_NPVARIANT(object->np_object(), *result); in PPVarToNPVariantNoCopy()
168 NULL, accessor.object()->np_object(), accessor.identifier())); in HasProperty()
180 NULL, accessor.object()->np_object(), accessor.identifier()); in HasMethodDeprecated()
190 accessor.object()->np_object(), in GetProperty()
217 NULL, accessor.object()->np_object(), &identifiers, &count)) { in EnumerateProperties()
247 accessor.object()->np_object(), in SetPropertyDeprecated()
259 NULL, accessor.object()->np_object(), accessor.identifier())) in DeletePropertyDeprecated()
300 accessor->object()->np_object(), in InternalCallDeprecated()
307 NULL, accessor->object()->np_object(), args.get(), argc, &result); in InternalCallDeprecated()
357 NULL, accessor.object()->np_object(), args.get(), argc, &result)) { in Construct()
[all …]
Dplugin_object.cc44 void WrapperClass_Deallocate(NPObject* np_object) { in WrapperClass_Deallocate() argument
45 PluginObject* plugin_object = PluginObject::FromNPObject(np_object); in WrapperClass_Deallocate()
50 delete np_object; in WrapperClass_Deallocate()
97 bool WrapperClass_InvokeDefault(NPObject* np_object, in WrapperClass_InvokeDefault() argument
101 PluginObject* obj = PluginObject::FromNPObject(np_object); in WrapperClass_InvokeDefault()
335 bool PluginObject::IsInstanceOf(NPObject* np_object, in IsInstanceOf() argument
340 if (np_object->_class != &wrapper_class) in IsInstanceOf()
343 PluginObject* plugin_object = FromNPObject(np_object); in IsInstanceOf()
Dhost_var_tracker.cc50 DCHECK(np_object_map->find(object_var->np_object()) == np_object_map->end()) in AddNPObjectVar()
52 np_object_map->insert(std::make_pair(object_var->np_object(), object_var)); in AddNPObjectVar()
67 np_object_map->find(object_var->np_object()); in RemoveNPObjectVar()
80 NPObject* np_object) { in NPObjectVarForNPObject() argument
89 np_object_map->find(np_object); in NPObjectVarForNPObject()
Dnpobject_var.h35 NPObjectVar(PP_Instance instance, NPObject* np_object);
43 NPObject* np_object() const { return np_object_; } in np_object() function
Dnpobject_var.cc19 NPObjectVar::NPObjectVar(PP_Instance instance, NPObject* np_object) in NPObjectVar() argument
20 : pp_instance_(instance), np_object_(np_object) { in NPObjectVar()
Dplugin_object.h48 static bool IsInstanceOf(NPObject* np_object,
Dmessage_channel.h75 NPObject* np_object() { return np_object_; } in np_object() function
Dpepper_webplugin_impl.cc143 instance_->message_channel().SetPassthroughObject(object->np_object()); in scriptableObject()
145 NPObject* message_channel_np_object(instance_->message_channel().np_object()); in scriptableObject()
Dhost_var_tracker.h50 NPObject* np_object);
Dhost_var_tracker_unittest.cc101 EXPECT_EQ(npobject.get(), check_object->np_object()); in TEST_F()
Dnpapi_glue.cc107 OBJECT_TO_NPVARIANT(WebBindings::retainObject(object->np_object()), in PPVarToNPVariant()
/external/chromium_org/content/browser/android/java/
Djava_bound_object.cc64 static void Deallocate(NPObject* np_object);
65 static bool HasMethod(NPObject* np_object, NPIdentifier np_identifier);
66 static bool Invoke(NPObject* np_object, NPIdentifier np_identifier,
69 static bool HasProperty(NPObject* np_object, NPIdentifier np_identifier);
70 static bool GetProperty(NPObject* np_object, NPIdentifier np_identifier,
97 void JavaNPObject::Deallocate(NPObject* np_object) { in Deallocate() argument
98 JavaNPObject* obj = reinterpret_cast<JavaNPObject*>(np_object); in Deallocate()
103 bool JavaNPObject::HasMethod(NPObject* np_object, NPIdentifier np_identifier) { in HasMethod() argument
105 JavaNPObject* obj = reinterpret_cast<JavaNPObject*>(np_object); in HasMethod()
109 bool JavaNPObject::Invoke(NPObject* np_object, NPIdentifier np_identifier, in Invoke() argument
[all …]
/external/chromium_org/content/child/npapi/
Dplugin_host.cc699 NPObject *np_object = plugin->webplugin()->GetWindowScriptNPObject(); in NPN_GetValue() local
703 if (np_object) { in NPN_GetValue()
704 WebBindings::retainObject(np_object); in NPN_GetValue()
706 *v = np_object; in NPN_GetValue()
719 NPObject *np_object = plugin->webplugin()->GetPluginElement(); in NPN_GetValue() local
723 if (np_object) { in NPN_GetValue()
724 WebBindings::retainObject(np_object); in NPN_GetValue()
726 *v = np_object; in NPN_GetValue()
/external/chromium_org/content/renderer/browser_plugin/
Dbrowser_plugin_bindings.h35 NPObject* np_object() const { return np_object_; } in np_object() function
Dbrowser_plugin.cc585 NPObject* browser_plugin_np_object(bindings_->np_object()); in scriptableObject()