/external/chromium_org/content/renderer/pepper/ |
D | ppb_var_deprecated_impl.cc | 87 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 …]
|
D | plugin_object.cc | 44 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()
|
D | host_var_tracker.cc | 50 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()
|
D | npobject_var.h | 35 NPObjectVar(PP_Instance instance, NPObject* np_object); 43 NPObject* np_object() const { return np_object_; } in np_object() function
|
D | npobject_var.cc | 19 NPObjectVar::NPObjectVar(PP_Instance instance, NPObject* np_object) in NPObjectVar() argument 20 : pp_instance_(instance), np_object_(np_object) { in NPObjectVar()
|
D | plugin_object.h | 48 static bool IsInstanceOf(NPObject* np_object,
|
D | message_channel.h | 75 NPObject* np_object() { return np_object_; } in np_object() function
|
D | pepper_webplugin_impl.cc | 143 instance_->message_channel().SetPassthroughObject(object->np_object()); in scriptableObject() 145 NPObject* message_channel_np_object(instance_->message_channel().np_object()); in scriptableObject()
|
D | host_var_tracker.h | 50 NPObject* np_object);
|
D | host_var_tracker_unittest.cc | 101 EXPECT_EQ(npobject.get(), check_object->np_object()); in TEST_F()
|
D | npapi_glue.cc | 107 OBJECT_TO_NPVARIANT(WebBindings::retainObject(object->np_object()), in PPVarToNPVariant()
|
/external/chromium_org/content/browser/android/java/ |
D | java_bound_object.cc | 64 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/ |
D | plugin_host.cc | 699 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/ |
D | browser_plugin_bindings.h | 35 NPObject* np_object() const { return np_object_; } in np_object() function
|
D | browser_plugin.cc | 585 NPObject* browser_plugin_np_object(bindings_->np_object()); in scriptableObject()
|