Lines Matching full:setter
1522 if (!interceptor->setter()->IsUndefined()) {
1526 v8::NamedPropertySetter setter =
1527 v8::ToCData<v8::NamedPropertySetter>(interceptor->setter());
1535 result = setter(v8::Utils::ToLocal(name_handle),
1566 // value since a const declaration would conflict with the setter.
1576 Object* obj = (callback->setter)(this, value, callback->data);
1585 Object* call_obj = data->setter();
1604 Object* setter = FixedArray::cast(structure)->get(kSetterIndex);
1605 if (setter->IsJSFunction()) {
1606 return SetPropertyWithDefinedSetter(JSFunction::cast(setter), value);
1621 Object* JSObject::SetPropertyWithDefinedSetter(JSFunction* setter,
1624 Handle<JSFunction> fun(JSFunction::cast(setter));
1627 // Handle stepping into a setter if step into is active.
1905 // callback setter removed. The two lines looking up the LookupResult
2771 // a getter/setter.
2783 // Allocate the fixed array to hold getter and setter.
5580 if (!interceptor->setter()->IsUndefined()) {
5581 v8::IndexedPropertySetter setter =
5582 v8::ToCData<v8::IndexedPropertySetter>(interceptor->setter());
5590 result = setter(index, v8::Utils::ToLocal(value_handle), info);
5612 Object* setter = LookupCallbackSetterInPrototypes(index);
5613 if (setter->IsJSFunction()) {
5614 return SetPropertyWithDefinedSetter(JSFunction::cast(setter), value);
5735 JSFunction* setter = JSFunction::cast(structure->get(kSetterIndex));
5736 return SetPropertyWithDefinedSetter(setter, value);
5751 Object* setter = LookupCallbackSetterInPrototypes(index);
5752 if (setter->IsJSFunction()) {
5753 return SetPropertyWithDefinedSetter(JSFunction::cast(setter),