Searched refs:HasProperty (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/ppapi/c/dev/
H A Dppp_class_deprecated.h44 bool (*HasProperty)(void* object, member in struct:PPP_Class_Deprecated
63 * a call HasProperty() for the same |name| would return false.
H A Dppb_var_deprecated.h90 bool (*HasProperty)(struct PP_Var object, member in struct:PPB_Var_Deprecated
95 * Identical to HasProperty, except that HasMethod additionally checks if the
/external/chromium_org/ppapi/tests/
H A Dtest_var_deprecated.cc301 ASSERT_TRUE(window.HasProperty("scrollX", &exception));
306 // Regular method (also counts as HasProperty).
307 ASSERT_TRUE(window.HasProperty("find", &exception));
313 ASSERT_FALSE(window.HasProperty("superEvilBit", &exception));
319 ASSERT_FALSE(window.HasProperty(3.14159, &exception));
330 ASSERT_FALSE(string_object.HasProperty("find", &exception));
341 ASSERT_FALSE(var_interface_->HasProperty(invalid_object,
356 ASSERT_FALSE(window.HasProperty("find", &exception));
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin_bindings.h46 bool HasProperty(NPIdentifier name) const;
H A Dbrowser_plugin_bindings.cc141 return bindings->HasProperty(name);
716 bool BrowserPluginBindings::HasProperty(NPIdentifier name) const { function in class:content::BrowserPluginBindings
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc43 bool HasProperty(void* object, PP_Var name, PP_Var* exception) { function in namespace:pp::deprecated::__anon10039
45 return static_cast<ScriptableObject*>(object)->HasProperty(
130 &HasProperty,
143 bool ScriptableObject::HasProperty(const Var& /*name*/, Var* /*exception*/) { function in class:pp::deprecated::ScriptableObject
H A Dscriptable_object_deprecated.h39 virtual bool HasProperty(const Var& name, Var* exception);
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dscriptable_plugin.h52 virtual bool HasProperty(const pp::Var& name, pp::Var* exception);
H A Dscriptable_plugin.cc82 bool ScriptablePlugin::HasProperty(const pp::Var& name, pp::Var* exception) { function in class:plugin::ScriptablePlugin
84 PLUGIN_PRINTF(("ScriptablePlugin::HasProperty (this=%p, name=%s)\n",
/external/chromium_org/webkit/renderer/
H A Dcpp_bound_class.h128 bool HasProperty(NPIdentifier ident) const;
H A Dcpp_bound_class.cc156 return obj->bound_class->HasProperty(ident);
198 bool CppBoundClass::HasProperty(NPIdentifier ident) const { function in class:webkit_glue::CppBoundClass
/external/chromium/webkit/glue/
H A Dcpp_bound_class.h165 bool HasProperty(NPIdentifier ident) const;
H A Dcpp_bound_class.cc152 return obj->bound_class->HasProperty(ident);
198 bool CppBoundClass::HasProperty(NPIdentifier ident) const { function in class:CppBoundClass
/external/chromium_org/ppapi/cpp/private/
H A Dvar_private.cc52 bool VarPrivate::HasProperty(const Var& name, Var* exception) const { function in class:pp::VarPrivate
55 return get_interface<PPB_Var_Deprecated>()->HasProperty(
H A Dvar_private.h43 bool HasProperty(const Var& name, Var* exception = NULL) const;
/external/chromium_org/ppapi/proxy/
H A Dppb_var_deprecated_proxy.cc66 bool HasProperty(PP_Var var, function in namespace:ppapi::proxy::__anon10188
302 &HasProperty,
396 *result = PP_FromBool(ppb_var_impl_->HasProperty(
H A Dppp_class_proxy.cc47 bool HasProperty(void* object, PP_Var name, PP_Var* exception) { function in namespace:ppapi::proxy::__anon10192
177 &HasProperty,
281 *result = CallWhileUnlocked(ToPPPClass(ppp_class)->HasProperty,
/external/chromium_org/remoting/host/plugin/
H A Dhost_plugin.cc163 &HasProperty,
292 static bool HasProperty(NPObject* obj, NPIdentifier property_name) { function in class:__anon10487::HostNPPlugin
293 VLOG(2) << "static HasProperty";
299 return scriptable->HasProperty(property_name_string);
H A Dhost_script_object.h44 bool HasProperty(const std::string& property_name);
/external/chromium_org/content/renderer/pepper/
H A Dppb_var_deprecated_impl.cc165 PP_Bool HasProperty(PP_Var var, function in namespace:content::__anon8540
179 return PPBoolToBool(HasProperty(var, name, exception));
H A Dplugin_object.cc120 bool rv = accessor.object()->ppp_class()->HasProperty(
/external/chromium_org/v8/src/
H A Druntime.js353 %HasElement(x, this) : %HasProperty(x, %ToName(this));
394 if (%HasProperty(this, string)) return string;
H A Dhandles.h240 Handle<Object> HasProperty(Handle<JSReceiver> obj, Handle<Object> key);
/external/v8/src/
H A Druntime.js359 %HasElement(x, this) : %HasProperty(x, %ToString(this));
400 if (%HasProperty(this, string)) return string;
/external/chromium_org/content/browser/renderer_host/java/
H A Djava_bound_object.cc69 static bool HasProperty(NPObject* np_object, NPIdentifier np_identifier);
82 JavaNPObject::HasProperty,
113 bool JavaNPObject::HasProperty(NPObject* np_object, function in class:content::__anon8139::JavaNPObject

Completed in 794 milliseconds

12