Home
last modified time | relevance | path

Searched refs:setter (Results 76 - 100 of 275) sorted by relevance

1234567891011

/third_party/node/test/fixtures/wpt/wasm/jsapi/
H A Dinterface.any.js47 assert_function_name(propdesc.set, "set " + name, `setter for "${name}"`);
48 assert_function_length(propdesc.set, 1, `setter for "${name}"`);
52 }, `${object_name}.${name}: setter`);
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtins.h69 #define ECMA_ACCESSOR_READ_WRITE(getter, setter) (((getter) << 8) | (setter))
72 * Get accessor setter ID
/third_party/node/lib/internal/bootstrap/
H A Dbrowser.js101 function exposeGetterAndSetter(target, name, getter, setter = undefined) {
107 set: setter,
/third_party/python/Lib/test/
H A Dtest_property.py29 @spam.setter
44 @spam.setter
278 @spam.setter
290 @Foo.spam.setter
346 with self.assertRaisesRegex(AttributeError, self._format_exc_msg("has no setter")):
H A Dtest_dynamicclassattribute.py30 @spam.setter
47 @spam.setter
245 @spam.setter
258 @spam.setter
/third_party/rust/crates/nix/src/sys/socket/
H A Dsockopt.rs46 ($name:ident, $level:expr, $flag:path, $ty:ty, $setter:ty) => {
52 let setter: $setter = Set::new(val); in set()
58 setter.ffi_ptr(), in set()
59 setter.ffi_len(), in set()
130 /// * `GetOnly`, `SetOnly` or `Both`: whether you want to implement only getter, only setter or
142 /// * `$setter:ty`: `Set` implementation; optional; only for `SetOnly` and `Both`.
227 $setter:ty) =>
233 setsockopt_impl!($name, $level, $flag, $ty, $setter);
237 $getter:ty, $setter
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_bindings.h64 FunctionBinding<T, panda::Local<panda::JSValueRef>, panda::JsiRuntimeCallInfo*>* setter);
66 static void CustomProperty(const char* name, FunctionGetCallback getter, FunctionSetCallback setter);
70 FunctionBinding<T, void, const JSCallbackInfo&>* setter);
/foundation/arkui/ace_engine_lite/interfaces/inner_api/builtin/jsi/
H A Djsi.h73 JSIFunctionHandler setter; // access function for setting value member
76 JSPropertyDescriptor() : setter(nullptr), getter(nullptr) {} in JSPropertyDescriptor()
717 * @brief Define a property on the specified object with the given setter and getter.
721 * @param [in] setter: access function for setting value
728 JSIFunctionHandler setter,
/third_party/jsframework/runtime/main/reactivity/
H A Dobserver.js59 * Convert a property into getter/setter so we can emit the events when the property is accessed/changed.
141 const setter = property && property.set;
168 if (setter) {
169 setter.call(obj, newVal);
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djs_value.h69 const shared_ptr<JsValue> &getter, const shared_ptr<JsValue> &setter) = 0;
71 const shared_ptr<JsValue> &getter, const shared_ptr<JsValue> &setter) = 0;
H A Dark_js_value.h79 const shared_ptr<JsValue> &setter) override;
81 const shared_ptr<JsValue> &getter, const shared_ptr<JsValue> &setter) override;
/foundation/multimedia/av_session/frameworks/js/napi/session/src/
H A Dnapi_media_info_holder.cpp74 auto setter = setterMap_[i]; in SetValue() local
75 if (setter(env, in, out) != napi_ok) { in SetValue()
H A Dnapi_queue_item.cpp60 auto setter = setterMap_[i]; in SetValue() local
61 if (setter(env, in, out) != napi_ok) { in SetValue()
/foundation/filemanagement/file_api/interfaces/kits/js/src/common/napi/
H A Dn_val.h84 static napi_property_descriptor DeclareNapiSetter(const char *name, napi_callback setter);
87 napi_callback setter);
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/common/napi/
H A Dn_val.h129 static napi_property_descriptor DeclareNapiSetter(const char *name, napi_callback setter);
132 napi_callback getter, napi_callback setter);
/third_party/jerryscript/tests/unit-core/
H A Dtest-api-property.cpp67 TEST_ASSERT (jerry_value_is_undefined (prop_desc.setter)); in HWTEST_F()
92 TEST_ASSERT (jerry_value_is_undefined (prop_desc.setter)); in HWTEST_F()
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dcomp.rs323 /// Name of the generated Rust setter for this bitfield.
383 /// Name of the generated Rust setter for this bitfield.
778 setter: String, in deanonymize_fields()
798 let setter = { in deanonymize_fields()
799 let setter = format!("set_{}", bitfield_name); in deanonymize_fields()
800 let mut setter = ctx.rust_mangle(&setter).to_string(); in deanonymize_fields() variables
801 if has_method(methods, ctx, &setter) { in deanonymize_fields()
802 setter.push_str("_bindgen_bitfield"); in deanonymize_fields()
804 setter in deanonymize_fields()
[all...]
/third_party/python/Lib/
H A Dssl.py604 @minimum_version.setter
614 @maximum_version.setter
622 @options.setter
632 @hostname_checks_common_name.setter
682 @_msg_callback.setter
728 @verify_flags.setter
740 @verify_mode.setter
883 @context.setter
892 @session.setter
1115 @context.setter
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dpython_message.py633 def __init__(self, descriptor, getter, setter, doc):
634 property.__init__(self, getter, setter, doc=doc)
672 # We define a setter just so we can throw an exception with a more
674 def setter(self, new_value): function
679 setattr(cls, property_name, _FieldProperty(field, getter, setter, doc=doc))
727 def setter(self, new_value): function
731 setter = field_setter
733 setter.__module__ = None
734 setter.__doc__ = 'Setter for %s.' % proto_field_name
736 # Add a property to encapsulate the getter/setter
776 def setter(self, new_value): global() function
[all...]
/third_party/vk-gl-cts/android/cts/runner/tests/src/com/drawelements/deqp/runner/
H A DDeqpTestRunnerTest.java154 OptionSetter setter = new OptionSetter(runner); in buildGlesTestRunner()
162 setter.setOptionValue("deqp-package", deqpPackage); in buildGlesTestRunner()
163 setter.setOptionValue("deqp-gl-config-name", "rgba8888d24s8"); in buildGlesTestRunner()
164 setter.setOptionValue("deqp-caselist-file", caselistsFile.getName()); in buildGlesTestRunner()
165 setter.setOptionValue("deqp-screen-rotation", "unspecified"); in buildGlesTestRunner()
166 setter.setOptionValue("deqp-surface-type", "window"); in buildGlesTestRunner()
1093 OptionSetter setter = new OptionSetter(deqpTest); in testRun_queryPmListFailure()
1095 setter.setOptionValue("deqp-screen-rotation", "90"); in testRun_queryPmListFailure()
1213 OptionSetter setter = new OptionSetter(deqpTest); in testOrientation()
1214 setter in testOrientation()
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/common/
H A Dnapi_value.h91 static napi_property_descriptor DeclareNapiSetter(const char *name, napi_callback setter);
93 const char *name, napi_callback getter, napi_callback setter);
/foundation/filemanagement/file_api/utils/filemgmt_libn/include/
H A Dn_val.h94 static napi_property_descriptor DeclareNapiSetter(const char *name, napi_callback setter);
96 DeclareNapiGetterSetter(const char *name, napi_callback getter, napi_callback setter);
/third_party/node/deps/v8/src/inspector/
H A Dvalue-mirror.h26 std::unique_ptr<ValueMirror> setter; member
44 std::unique_ptr<ValueMirror> setter; member
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DSamplerGL.cpp55 Setter setter) in SyncSamplerStateMember()
59 (curState.*setter)((newState.*getter)()); in SyncSamplerStateMember()
49 SyncSamplerStateMember(const rx::FunctionsGL *functions, GLuint sampler, const gl::SamplerState &newState, gl::SamplerState &curState, GLenum name, Getter getter, Setter setter) SyncSamplerStateMember() argument
/third_party/python/Doc/includes/
H A Dcustom4.c140 {"first", (getter) Custom_getfirst, (setter) Custom_setfirst,
142 {"last", (getter) Custom_getlast, (setter) Custom_setlast,

Completed in 14 milliseconds

1234567891011