Lines Matching defs:HasProperty
1527 bool JSObject::HasProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JSTaggedValue> &key)
1535 return JSProxy::HasProperty(thread, JSHandle<JSProxy>::Cast(holder), key);
1541 bool JSObject::HasProperty(JSThread *thread, const JSHandle<JSObject> &obj, uint32_t index)
1549 return JSProxy::HasProperty(thread, JSHandle<JSProxy>::Cast(holder), key);
2334 // 4. Let hasEnumerable be HasProperty(Obj, "enumerable")
2343 // 7. Let hasConfigurable be HasProperty(Obj, "configurable").
2352 // 10. Let hasValue be HasProperty(Obj, "value").
2360 // 13. Let hasWritable be HasProperty(Obj, "writable").
2369 // 16. Let hasGet be HasProperty(Obj, "get").
2381 // 19. Let hasSet be HasProperty(Obj, "set").