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

  /external/chromium_org/content/renderer/pepper/
npobject_var.h 35 NPObjectVar(PP_Instance instance, NPObject* np_object);
43 NPObject* np_object() const { return np_object_; } function in class:ppapi::NPObjectVar
npobject_var.cc 19 NPObjectVar::NPObjectVar(PP_Instance instance, NPObject* np_object)
20 : pp_instance_(instance), np_object_(np_object) {
ppb_var_deprecated_impl.cc 87 OBJECT_TO_NPVARIANT(object->np_object(), *result);
168 NULL, accessor.object()->np_object(), accessor.identifier()));
180 NULL, accessor.object()->np_object(), accessor.identifier());
190 accessor.object()->np_object(),
217 NULL, accessor.object()->np_object(), &identifiers, &count)) {
247 accessor.object()->np_object(),
259 NULL, accessor.object()->np_object(), accessor.identifier()))
300 accessor->object()->np_object(),
307 NULL, accessor->object()->np_object(), args.get(), argc, &result);
357 NULL, accessor.object()->np_object(), args.get(), argc, &result))
    [all...]
host_var_tracker.cc 50 DCHECK(np_object_map->find(object_var->np_object()) == np_object_map->end())
52 np_object_map->insert(std::make_pair(object_var->np_object(), object_var));
67 np_object_map->find(object_var->np_object());
80 NPObject* np_object) {
89 np_object_map->find(np_object);
plugin_object.h 48 static bool IsInstanceOf(NPObject* np_object,
plugin_object.cc 44 void WrapperClass_Deallocate(NPObject* np_object) {
45 PluginObject* plugin_object = PluginObject::FromNPObject(np_object);
50 delete np_object;
97 bool WrapperClass_InvokeDefault(NPObject* np_object,
101 PluginObject* obj = PluginObject::FromNPObject(np_object);
335 bool PluginObject::IsInstanceOf(NPObject* np_object,
340 if (np_object->_class != &wrapper_class)
343 PluginObject* plugin_object = FromNPObject(np_object);
host_var_tracker.h 50 NPObject* np_object);
message_channel.h 75 NPObject* np_object() { return np_object_; } function in class:content::MessageChannel
host_var_tracker_unittest.cc 101 EXPECT_EQ(npobject.get(), check_object->np_object());
pepper_webplugin_impl.cc 143 instance_->message_channel().SetPassthroughObject(object->np_object());
145 NPObject* message_channel_np_object(instance_->message_channel().np_object());
npapi_glue.cc 107 OBJECT_TO_NPVARIANT(WebBindings::retainObject(object->np_object()),
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_bindings.h 35 NPObject* np_object() const { return np_object_; } function in class:content::BrowserPluginBindings
browser_plugin.cc 585 NPObject* browser_plugin_np_object(bindings_->np_object());
    [all...]
  /external/chromium_org/content/browser/android/java/
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) {
98 JavaNPObject* obj = reinterpret_cast<JavaNPObject*>(np_object);
103 bool JavaNPObject::HasMethod(NPObject* np_object, NPIdentifier np_identifier) {
105 JavaNPObject* obj = reinterpret_cast<JavaNPObject*>(np_object);
109 bool JavaNPObject::Invoke(NPObject* np_object, NPIdentifier np_identifier
837 NPObject* np_object = WebBindings::createObject(0, const_cast<NPClass*>( local
    [all...]
  /external/chromium_org/content/child/npapi/
plugin_host.cc 699 NPObject *np_object = plugin->webplugin()->GetWindowScriptNPObject(); local
703 if (np_object) {
704 WebBindings::retainObject(np_object);
706 *v = np_object;
719 NPObject *np_object = plugin->webplugin()->GetPluginElement(); local
723 if (np_object) {
724 WebBindings::retainObject(np_object);
726 *v = np_object;
    [all...]

Completed in 170 milliseconds