/third_party/node/deps/v8/src/objects/ |
H A D | js-objects.h | 343 // confusion, since the default setter uses relaxed semantics. If 344 // acquire/release semantics ever become necessary, the default setter should 420 // to the default behavior that calls the setter. 534 Handle<Object> setter, PropertyAttributes attributes); 537 Handle<Object> setter,
|
H A D | map.h | 258 // The setter in this pair calls the relaxed setter if concurrent marking is 736 InternalIndex descriptor, Handle<Object> getter, Handle<Object> setter,
|
H A D | objects.cc | 1515 // const declaration would conflict with the setter. in SetPropertyWithAccessor() 1532 // not have a setter. in SetPropertyWithAccessor() 1542 // The actual type of setter callback is either in SetPropertyWithAccessor() 1563 Handle<Object> setter(AccessorPair::cast(*structure).setter(), isolate); in SetPropertyWithAccessor() 1564 if (setter->IsFunctionTemplateInfo()) { in SetPropertyWithAccessor() 1571 Handle<FunctionTemplateInfo>::cast(setter), in SetPropertyWithAccessor() 1576 } else if (setter->IsCallable()) { in SetPropertyWithAccessor() 1579 receiver, Handle<JSReceiver>::cast(setter), value, maybe_should_throw); in SetPropertyWithAccessor() 1609 Handle<Object> receiver, Handle<JSReceiver> setter, Handl in SetPropertyWithDefinedSetter() 1608 SetPropertyWithDefinedSetter( Handle<Object> receiver, Handle<JSReceiver> setter, Handle<Object> value, Maybe<ShouldThrow> should_throw) SetPropertyWithDefinedSetter() argument [all...] |
H A D | literal-objects.cc | 216 GetExistingValueIndex(current_pair.setter()); in AddToDictionaryTemplate() 222 // Either both getter and setter were defined before the computed in AddToDictionaryTemplate() 237 // in turn was later overwritten by the setter method. So we clear in AddToDictionaryTemplate() 247 // the setter. in AddToDictionaryTemplate() 253 // 1.) the getter and setter, both of which are defined, in AddToDictionaryTemplate() 254 // 2.) the getter, and the setter isn't defined, in AddToDictionaryTemplate() 255 // 3.) the setter, and the getter isn't defined. in AddToDictionaryTemplate()
|
H A D | objects.h | 280 // Currently DefineOwnPropertyIgnoreAttributes invokes the setter 283 // interceptor and not invoke the setter: e.g. both the definer and 284 // the setter interceptors are called in Object.defineProperty(). 576 Handle<Object> receiver, Handle<JSReceiver> setter, Handle<Object> value,
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap.py | 401 @cached.setter 417 @has_location.setter
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-glyf-table.hh | 600 void (* setter) (contour_point_t &_, float v), in read_points() 625 setter (points_[i], v); in read_points()
|
/third_party/python/Objects/ |
H A D | frameobject.c | 830 (setter)frame_setlineno, NULL}, 831 {"f_trace", (getter)frame_gettrace, (setter)frame_settrace, NULL},
|
H A D | descrobject.c | 19 EM_JS(int, descr_set_trampoline_call, (setter set, PyObject *obj, PyObject *value, void *closure), { 1494 raise AttributeError, "property has no setter" 1537 "Descriptor to obtain a copy of the property with a different setter."); 1540 property_setter(PyObject *self, PyObject *setter) in property_setter() argument 1542 return property_copy(self, NULL, setter, NULL); in property_setter() 1580 {"setter", property_setter, METH_O, setter_doc}, 1655 "property %R of %R object has no setter", in property_descr_set() 1663 "property of %R object has no setter", in property_descr_set() 1670 "property has no setter"); in property_descr_set() 1762 @x.setter [all...] |
H A D | moduleobject.c | 949 {"__annotations__", (getter)module_get_annotations, (setter)module_set_annotations},
|
H A D | floatobject.c | 1843 float_getreal, (setter)NULL, 1847 float_getimag, (setter)NULL,
|
H A D | typeobject.c | 1011 {"__name__", (getter)type_name, (setter)type_set_name, NULL}, 1012 {"__qualname__", (getter)type_qualname, (setter)type_set_qualname, NULL}, 1013 {"__bases__", (getter)type_get_bases, (setter)type_set_bases, NULL}, 1014 {"__module__", (getter)type_module, (setter)type_set_module, NULL}, 1016 (setter)type_set_abstractmethods, NULL}, 1018 {"__doc__", (getter)type_get_doc, (setter)type_set_doc, NULL}, 1020 {"__annotations__", (getter)type_get_annotations, (setter)type_set_annotations, NULL},
|
/third_party/node/deps/minimatch/ |
H A D | index.js | 25 var __privateSet = (obj, member, value, setter) => { 27 setter ? setter.call(obj, value) : member.set(obj, value);
|
/third_party/python/Lib/ |
H A D | subprocess.py | 156 @stdout.setter 184 @stdout.setter 1081 @universal_newlines.setter
|
H A D | weakref.py | 619 @atexit.setter
|
/third_party/python/Modules/_sqlite/ |
H A D | connection.c | 2318 {"isolation_level", (getter)pysqlite_connection_get_isolation_level, (setter)pysqlite_connection_set_isolation_level}, 2319 {"total_changes", (getter)pysqlite_connection_get_total_changes, (setter)0}, 2320 {"in_transaction", (getter)pysqlite_connection_get_in_transaction, (setter)0},
|
/kernel/linux/linux-6.6/tools/net/ynl/ |
H A D | ynl-gen-c.py | 192 def setter(self, ri, space, direction, deref=False, ref=None): member in Type 250 def setter(self, ri, space, direction, deref=False, ref=None): member in TypePad 460 def setter(self, ri, space, direction, deref=False, ref=None): member in TypeNest 464 attr.setter(ri, self.nested_attrs, direction, deref=deref, ref=ref) 1746 attr.setter(ri, ri.attr_set, direction, deref=deref)
|
/third_party/skia/tests/ |
H A D | GrStyledShapeTest.cpp | 946 std::function<void(SkPaint*, T)> setter, T a, T b, in test_stroke_param_impl() 949 // Set the stroke width so that we don't get hairline. However, call the setter afterward so in test_stroke_param_impl() 954 setter(&strokeA, a); in test_stroke_param_impl() 958 setter(&strokeB, b); in test_stroke_param_impl() 1022 std::function<void(SkPaint*, T)> setter, T a, T b) { in test_stroke_param() 1023 test_stroke_param_impl(reporter, geo, setter, a, b, true, true); in test_stroke_param() 945 test_stroke_param_impl(skiatest::Reporter* reporter, const Geo& geo, std::function<void(SkPaint*, T)> setter, T a, T b, bool paramAffectsStroke, bool paramAffectsDashAndStroke) test_stroke_param_impl() argument 1021 test_stroke_param(skiatest::Reporter* reporter, const Geo& geo, std::function<void(SkPaint*, T)> setter, T a, T b) test_stroke_param() argument
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-generator.cc | 1079 Accessors() : getter(nullptr), setter(nullptr) {} in Accessors() 1081 PropertyT* setter; member 1084 // A map from property names to getter/setter pairs allocated in the zone that 2624 DCHECK_NULL(private_accessors.LookupOrInsert(key)->setter); in BuildClassLiteral() 2625 private_accessors.LookupOrInsert(key)->setter = property; in BuildClassLiteral() 2740 ClassLiteral::Property* setter = accessors.second->setter; in BuildClassLiteral() local 2742 VisitLiteralAccessor(setter, accessors_reg[1]); in BuildClassLiteral() 2745 : setter->private_name_var(); in BuildClassLiteral() 3159 accessor_table.LookupOrInsert(key)->setter in VisitObjectLiteral() [all...] |
/third_party/python/Modules/ |
H A D | _elementtree.c | 1985 /* macro for setter validation */ 4187 (setter)element_tag_setter, 4191 (setter)element_text_setter, 4195 (setter)element_tail_setter, 4199 (setter)element_attrib_setter,
|
H A D | _struct.c | 2083 {"format", (getter)s_get_format, (setter)NULL, "struct format string", NULL}, 2084 {"size", (getter)s_get_size, (setter)NULL, "struct size in bytes", NULL},
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-interface.h | 636 v8::Local<v8::Value> setter();
|
/third_party/python/Python/ |
H A D | traceback.c | 164 {"tb_next", (getter)tb_next_get, (setter)tb_next_set, NULL, NULL},
|
/third_party/python/Lib/logging/ |
H A D | __init__.py | 1323 @disable.setter 1930 @manager.setter
|
/third_party/node/deps/v8/src/torque/ |
H A D | implementation-visitor.cc | 4005 // Generates getter and setter runtime member functions for the given class 4483 // setter in GenerateFieldAccessors() 4485 auto setter = cpp::Function::DefaultSetter( in GenerateFieldAccessors() local 4488 setter.InsertParameter(0, "int", "i"); in GenerateFieldAccessors() 4494 setter.AddParameter("RelaxedStoreTag"); in GenerateFieldAccessors() 4497 setter.AddParameter("ReleaseStoreTag"); in GenerateFieldAccessors() 4501 setter.AddParameter("WriteBarrierMode", "mode", "UPDATE_WRITE_BARRIER"); in GenerateFieldAccessors() 4503 setter.PrintDeclaration(hdr_); in GenerateFieldAccessors() 4505 setter.PrintDefinition(inl_, [&](auto& stream) { in GenerateFieldAccessors()
|