Home | History | Annotate | Download | only in src

Lines Matching full:setter

184 // Setter that skips the write barrier if mode is SKIP_WRITE_BARRIER.
1407 MUST_USE_RESULT MaybeObject* SetPropertyWithDefinedSetter(JSReceiver* setter,
1633 Handle<Object> setter,
1637 Object* setter,
2143 // Searches the prototype chain for a callback setter and sets the property
2144 // with the setter if it finds one. The '*found' flag indicates whether
2145 // a setter was found or not.
2187 Object* setter,
2192 Object* setter,
2233 // Setter and getter for elements.
2235 // Setter that uses write barrier.
2239 // Setter that doesn't need write barrier).
2241 // Setter with explicit barrier mode.
2346 // Setter and getter for elements.
3183 // when defining a getter or setter with a number key.
3550 // Setter and getter.
3649 // Out-of-range values passed to the setter are converted via a C
3689 // Setter and getter.
3718 // Setter and getter.
3747 // Setter and getter.
3776 // Setter and getter.
3805 // Setter and getter.
3834 // Setter and getter.
3863 // Setter and getter.
3892 // Setter and getter.
3921 // Setter and getter.
7683 // If the handler defines an accessor property, invoke its setter
7928 // Overload the length setter to skip write barrier when the length
8001 // An accessor must have a getter, but can have no setter.
8004 // If an accessor was found and it does not have a setter,
8013 DECL_ACCESSORS(setter, Object)
8060 // Support for JavaScript accessors: A pair of a getter and a setter. Each
8069 DECL_ACCESSORS(setter, Object)
8079 void SetComponents(Object* getter, Object* setter) {
8081 if (!setter->IsNull()) set_setter(setter);
8085 return IsJSAccessor(getter()) || IsJSAccessor(setter());
8144 DECL_ACCESSORS(setter, Object)