Searched refs:HasRealNamedProperty (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8StyleSheetListCustom.cpp46 if (info.Holder()->HasRealNamedProperty(name))
H A DV8DOMWindowCustom.cpp552 // Notice that we can't call HasRealNamedProperty for ACCESS_HAS
556 if (type == v8::ACCESS_GET && target->tree()->child(name) && !host->HasRealNamedProperty(key->ToString()))
577 // Notice that we can't call HasRealNamedProperty for ACCESS_HAS
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptValue.cpp113 if (name->IsString() && !object->HasRealNamedProperty(v8::Handle<v8::String>::Cast(name)))
H A DSerializedScriptValue.cpp507 bool hasStringProperty = propertyName->IsString() && composite()->HasRealNamedProperty(propertyName.As<v8::String>());
/external/v8/include/
H A Dv8.h1565 V8EXPORT bool HasRealNamedProperty(Handle<String> key);
/external/v8/src/
H A Dapi.cc3084 bool v8::Object::HasRealNamedProperty(Handle<String> key) { function in class:v8::v8::Object
3086 ON_BAILOUT(isolate, "v8::Object::HasRealNamedProperty()",
3088 return Utils::OpenHandle(this)->HasRealNamedProperty(
H A Dobjects.h1840 bool HasRealNamedProperty(String* key);
H A Dobjects.cc10079 bool JSObject::HasRealNamedProperty(String* key) { function in class:v8::internal::JSObject
H A Druntime.cc4770 if (object->HasRealNamedProperty(key)) return isolate->heap()->true_value();
/external/v8/test/cctest/
H A Dtest-api.cc9347 // Note, we're using HasRealNamedProperty instead of Has to avoid
9349 CHECK(args.Holder()->HasRealNamedProperty(v8_str("foo")));
14967 CHECK_EQ(false, global0->HasRealNamedProperty(v8_str("x")));

Completed in 595 milliseconds