Home | History | Annotate | Download | only in src

Lines Matching refs:HasOwnProperty

4078   return HasOwnProperty(context, Local<Name>(reinterpret_cast<Name*>(*key)));
4190 Maybe<bool> v8::Object::HasOwnProperty(Local<Context> context,
4192 PREPARE_FOR_EXECUTION_PRIMITIVE(context, Object, HasOwnProperty, bool);
4195 auto result = i::JSReceiver::HasOwnProperty(self, key_val);
4201 Maybe<bool> v8::Object::HasOwnProperty(Local<Context> context, uint32_t index) {
4202 PREPARE_FOR_EXECUTION_PRIMITIVE(context, Object, HasOwnProperty, bool);
4204 auto result = i::JSReceiver::HasOwnProperty(self, index);
4210 bool v8::Object::HasOwnProperty(Local<String> key) {
4212 return HasOwnProperty(context, key).FromMaybe(false);