Lines Matching defs:own_lookup
2667 LookupIterator own_lookup =
2671 for (; own_lookup.IsFound(); own_lookup.Next()) {
2672 switch (own_lookup.state()) {
2674 if (!own_lookup.HasAccess()) {
2675 return JSObject::SetPropertyWithFailedAccessCheck(&own_lookup, value,
2681 if (own_lookup.GetAccessors()->IsAccessorInfo()) {
2682 if (own_lookup.IsReadOnly()) {
2683 return WriteToReadOnlyProperty(&own_lookup, value, should_throw);
2685 return Object::SetPropertyWithAccessor(&own_lookup, value,
2694 if (own_lookup.IsReadOnly()) {
2695 return WriteToReadOnlyProperty(&own_lookup, value, should_throw);
2697 return SetDataProperty(&own_lookup, value);
2704 JSReceiver::GetOwnPropertyDescriptor(&own_lookup, &desc);
2707 if (!CheckContextualStoreToJSGlobalObject(&own_lookup,
2711 return JSReceiver::CreateDataProperty(&own_lookup, value,
2732 if (!CheckContextualStoreToJSGlobalObject(&own_lookup, should_throw)) {
2735 return AddDataProperty(&own_lookup, value, NONE, should_throw, store_origin);