/external/chromium_org/content/renderer/pepper/ |
ppb_var_deprecated_impl.cc | 87 OBJECT_TO_NPVARIANT(object->np_object(), *result); 172 accessor.object()->np_object(), 188 return WebBindings::hasMethod(NULL, accessor.object()->np_object(), 200 if (!WebBindings::getProperty(NULL, accessor.object()->np_object(), 225 if (!WebBindings::enumerate(NULL, accessor.object()->np_object(), 255 if (!WebBindings::setProperty(NULL, accessor.object()->np_object(), 267 if (!WebBindings::removeProperty(NULL, accessor.object()->np_object(), 308 ok = WebBindings::invoke(NULL, accessor->object()->np_object(), 311 ok = WebBindings::invokeDefault(NULL, accessor->object()->np_object(), 365 if (!WebBindings::construct(NULL, accessor.object()->np_object(), [all...] |
npobject_var.cc | 20 NPObject* np_object) 22 np_object_(np_object) {
|
host_var_tracker.cc | 52 DCHECK(np_object_map->find(object_var->np_object()) == 54 np_object_map->insert(std::make_pair(object_var->np_object(), object_var)); 69 np_object_map->find(object_var->np_object()); 82 NPObject* np_object) { 91 np_object_map->find(np_object);
|
npobject_var.h | 35 NPObjectVar(PP_Instance instance, NPObject* np_object); 43 NPObject* np_object() const { return np_object_; } function in class:ppapi::NPObjectVar
|
plugin_object.cc | 44 void WrapperClass_Deallocate(NPObject* np_object) { 45 PluginObject* plugin_object = PluginObject::FromNPObject(np_object); 92 bool WrapperClass_InvokeDefault(NPObject* np_object, const NPVariant* argv, 94 PluginObject* obj = PluginObject::FromNPObject(np_object); 324 bool PluginObject::IsInstanceOf(NPObject* np_object, 329 if (np_object->_class != &wrapper_class) 332 PluginObject* plugin_object = FromNPObject(np_object);
|
plugin_object.h | 46 static bool IsInstanceOf(NPObject* np_object,
|
host_var_tracker.h | 50 NPObject* np_object);
|
host_var_tracker_unittest.cc | 118 EXPECT_EQ(npobject.get(), check_object->np_object());
|
pepper_webplugin_impl.cc | 149 instance_->message_channel().SetPassthroughObject(object->np_object()); 151 NPObject* message_channel_np_object(instance_->message_channel().np_object());
|
message_channel.h | 76 NPObject* np_object() { return np_object_; } function in class:content::MessageChannel
|
npapi_glue.cc | 108 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 | [all...] |
/external/chromium_org/content/browser/renderer_host/java/ |
java_bound_object.cc | 59 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) { 89 JavaNPObject* obj = reinterpret_cast<JavaNPObject*>(np_object); 94 bool JavaNPObject::HasMethod(NPObject* np_object, NPIdentifier np_identifier) { 96 JavaNPObject* obj = reinterpret_cast<JavaNPObject*>(np_object); 100 bool JavaNPObject::Invoke(NPObject* np_object, NPIdentifier np_identifier 785 NPObject* np_object = WebBindings::createObject(0, const_cast<NPClass*>( local [all...] |
/external/chromium/webkit/glue/ |
cpp_variant.cc | 254 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);
|
cpp_bound_class.h | 173 // True if our np_object has been bound to a WebFrame, in which case it must
|
/external/chromium_org/webkit/renderer/ |
cpp_variant.cc | 256 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/child/npapi/ |
plugin_host.cc | 686 NPObject *np_object = plugin->webplugin()->GetWindowScriptNPObject(); local 690 if (np_object) { 691 WebBindings::retainObject(np_object); 693 *v = np_object; 706 NPObject *np_object = plugin->webplugin()->GetPluginElement(); local 710 if (np_object) { 711 WebBindings::retainObject(np_object); 713 *v = np_object; [all...] |
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
CppBoundClass.h | 239 // True if our np_object has been bound to a WebFrame, in which case it must
|