HomeSort by relevance Sort by last modified time
    Searched refs:np_object (Results 1 - 17 of 17) 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 20 NPObject* np_object)
22 np_object_(np_object) {
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...]
host_var_tracker.cc 51 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);
message_channel.h 66 NPObject* np_object() { return np_object_; } function in class:content::MessageChannel
plugin_object.h 46 static bool IsInstanceOf(NPObject* np_object,
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);
host_var_tracker.h 50 NPObject* np_object);
host_var_tracker_unittest.cc 119 EXPECT_EQ(npobject.get(), check_object->np_object());
pepper_webplugin_impl.cc 146 instance_->message_channel().SetPassthroughObject(object->np_object());
148 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     [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);
  /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 687 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;
    [all...]

Completed in 307 milliseconds