Searched defs:np_object (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin_bindings.h35 NPObject* np_object() const { return np_object_; } function in class:content::BrowserPluginBindings
/external/chromium_org/content/renderer/pepper/
H A Dnpobject_var.cc20 NPObject* np_object)
22 np_object_(np_object) {
19 NPObjectVar(PP_Instance instance, NPObject* np_object) argument
H A Dnpobject_var.h35 NPObjectVar(PP_Instance instance, NPObject* np_object);
43 NPObject* np_object() const { return np_object_; } function in class:ppapi::NPObjectVar
H A Dmessage_channel.h66 NPObject* np_object() { return np_object_; } function in class:content::MessageChannel
H A Dhost_var_tracker.cc51 DCHECK(np_object_map->find(object_var->np_object()) ==
53 np_object_map->insert(std::make_pair(object_var->np_object(), object_var));
68 np_object_map->find(object_var->np_object());
81 NPObject* np_object) {
90 np_object_map->find(np_object);
80 NPObjectVarForNPObject(PP_Instance instance, NPObject* np_object) argument
H A Dplugin_object.cc44 void WrapperClass_Deallocate(NPObject* np_object) { argument
45 PluginObject* plugin_object = PluginObject::FromNPObject(np_object);
92 bool WrapperClass_InvokeDefault(NPObject* np_object, const NPVariant* argv, argument
94 PluginObject* obj = PluginObject::FromNPObject(np_object);
324 bool PluginObject::IsInstanceOf(NPObject* np_object, argument
329 if (np_object->_class != &wrapper_class)
332 PluginObject* plugin_object = FromNPObject(np_object);
/external/chromium/webkit/glue/
H A Dcpp_variant.cc254 NPObject* np_object = value.objectValue; local
255 if (WebBindings::hasMethod(NULL, np_object, method_name)) {
257 bool status = WebBindings::invoke(NULL, np_object, method_name, args, arg_count, &r);
/external/chromium_org/webkit/renderer/
H A Dcpp_variant.cc256 NPObject* np_object = value.objectValue; local
257 if (WebBindings::hasMethod(NULL, np_object, method_name)) {
260 WebBindings::invoke(NULL, np_object, method_name, args, arg_count, &r);
/external/chromium_org/content/browser/renderer_host/java/
H A Djava_bound_object.cc59 static void Deallocate(NPObject* np_object);
60 static bool HasMethod(NPObject* np_object, NPIdentifier np_identifier);
61 static bool Invoke(NPObject* np_object, NPIdentifier np_identifier,
64 static bool HasProperty(NPObject* np_object, NPIdentifier np_identifier);
65 static bool GetProperty(NPObject* np_object, NPIdentifier np_identifier,
88 void JavaNPObject::Deallocate(NPObject* np_object) { argument
89 JavaNPObject* obj = reinterpret_cast<JavaNPObject*>(np_object);
94 bool JavaNPObject::HasMethod(NPObject* np_object, NPIdentifier np_identifier) { argument
96 JavaNPObject* obj = reinterpret_cast<JavaNPObject*>(np_object);
100 bool JavaNPObject::Invoke(NPObject* np_object, NPIdentifie argument
108 HasProperty(NPObject* np_object, NPIdentifier np_identifier) argument
115 GetProperty(NPObject* np_object, NPIdentifier np_identifier, NPVariant* result) argument
785 NPObject* np_object = WebBindings::createObject(0, const_cast<NPClass*>( local
[all...]
/external/chromium_org/content/child/npapi/
H A Dplugin_host.cc687 NPObject *np_object = plugin->webplugin()->GetWindowScriptNPObject(); local
691 if (np_object) {
692 WebBindings::retainObject(np_object);
694 *v = np_object;
707 NPObject *np_object = plugin->webplugin()->GetPluginElement(); local
711 if (np_object) {
712 WebBindings::retainObject(np_object);
714 *v = np_object;

Completed in 270 milliseconds