/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | field.cc | 82 {"DESCRIPTOR", (getter)GetDescriptor, NULL, "Field descriptor"}, 83 {"__doc__", (getter)GetDoc, NULL, NULL},
|
H A D | unknown_fields.cc | 307 {"field_number", (getter)GetFieldNumber, NULL}, 308 {"wire_type", (getter)GetWireType, NULL}, 309 {"data", (getter)GetData, NULL},
|
/third_party/python/Objects/ |
H A D | genobject.c | 792 {"__name__", (getter)gen_get_name, (setter)gen_set_name, 794 {"__qualname__", (getter)gen_get_qualname, (setter)gen_set_qualname, 796 {"gi_yieldfrom", (getter)gen_getyieldfrom, NULL, 798 {"gi_running", (getter)gen_getrunning, NULL, NULL}, 799 {"gi_frame", (getter)gen_getframe, NULL, NULL}, 800 {"gi_suspended", (getter)gen_getsuspended, NULL, NULL}, 1044 unaryfunc getter = NULL; in _PyCoro_GetAwaitableIter() local 1055 getter = ot->tp_as_async->am_await; in _PyCoro_GetAwaitableIter() 1057 if (getter != NULL) { in _PyCoro_GetAwaitableIter() 1058 PyObject *res = (*getter)( in _PyCoro_GetAwaitableIter() [all...] |
H A D | descrobject.c | 23 EM_JS(PyObject*, descr_get_trampoline_call, (getter get, PyObject *obj, void *closure), { 647 {"__doc__", (getter)method_get_doc}, 648 {"__qualname__", (getter)descr_get_qualname}, 649 {"__text_signature__", (getter)method_get_text_signature}, 663 {"__doc__", (getter)member_get_doc}, 664 {"__qualname__", (getter)descr_get_qualname}, 678 {"__doc__", (getter)getset_get_doc}, 679 {"__qualname__", (getter)descr_get_qualname}, 696 {"__doc__", (getter)wrapperdescr_get_doc}, 697 {"__qualname__", (getter)descr_get_qualnam 1530 property_getter(PyObject *self, PyObject *getter) property_getter() argument [all...] |
H A D | methodobject.c | 268 {"__doc__", (getter)meth_get__doc__, NULL, NULL}, 269 {"__name__", (getter)meth_get__name__, NULL, NULL}, 270 {"__qualname__", (getter)meth_get__qualname__, NULL, NULL}, 271 {"__self__", (getter)meth_get__self__, NULL, NULL}, 272 {"__text_signature__", (getter)meth_get__text_signature__, NULL, NULL},
|
H A D | funcobject.c | 563 {"__code__", (getter)func_get_code, (setter)func_set_code}, 564 {"__defaults__", (getter)func_get_defaults, 566 {"__kwdefaults__", (getter)func_get_kwdefaults, 568 {"__annotations__", (getter)func_get_annotations, 571 {"__name__", (getter)func_get_name, (setter)func_set_name}, 572 {"__qualname__", (getter)func_get_qualname, (setter)func_set_qualname}, 951 (getter)cm_get___isabstractmethod__, NULL, NULL, NULL}, 1149 (getter)sm_get___isabstractmethod__, NULL, NULL, NULL},
|
/third_party/skia/third_party/externals/harfbuzz/test/api/ |
H A D | test-unicode.c | 544 getter_func_t getter; member 595 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, tests[j].value); in test_unicode_properties() 603 if (p->getter (uf, tests[j].unicode) != tests[j].value) { in test_unicode_properties() 604 g_test_message ("Soft fail: Received %x, expected %x", p->getter (uf, tests[j].unicode), tests[j].value); in test_unicode_properties() 609 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, tests[j].value); in test_unicode_properties() 646 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, default_value (p->default_value, tests[j].unicode)); in _test_unicode_properties_nil() 651 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, default_value (p->default_value, tests[j].unicode)); in _test_unicode_properties_nil() 734 g_assert_cmphex (p->getter (uf, 'a'), ==, HB_SCRIPT_LATIN); in test_unicode_setters() 735 g_assert_cmphex (p->getter (uf, '0'), ==, HB_SCRIPT_UNKNOWN); in test_unicode_setters()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/ |
H A D | jsi_bindings.h | 63 FunctionBinding<T, panda::Local<panda::JSValueRef>, panda::JsiRuntimeCallInfo*>* getter, 66 static void CustomProperty(const char* name, FunctionGetCallback getter, FunctionSetCallback setter); 69 static void CustomProperty(const char* name, FunctionBinding<T, void, const JSCallbackInfo&>* getter,
|
/foundation/arkui/ace_engine_lite/interfaces/inner_api/builtin/jsi/ |
H A D | jsi.h | 74 JSIFunctionHandler getter; // access function for getting 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. 722 * @param [in] getter: access function for getting value 729 JSIFunctionHandler getter);
|
/third_party/node/test/parallel/ |
H A D | test-vm-module-errors.js | 248 getters.forEach((getter) => { 251 Module.prototype[getter]; 255 SourceTextModule.prototype[getter]; 258 // `dependencySpecifiers` getter is just part of SourceTextModule
|
H A D | test-file.js | 148 const getter = Object.getOwnPropertyDescriptor(File.prototype, 'name').get; 156 () => getter.call(invalidThis),
|
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/ |
H A D | js_value.h | 69 const shared_ptr<JsValue> &getter, const shared_ptr<JsValue> &setter) = 0; 71 const shared_ptr<JsValue> &getter, const shared_ptr<JsValue> &setter) = 0;
|
/foundation/multimedia/av_session/frameworks/js/napi/session/src/ |
H A D | napi_media_info_holder.cpp | 59 auto getter = it->second; in GetValue() local 60 if (getter(env, in, out) != napi_ok) { in GetValue()
|
H A D | napi_queue_item.cpp | 45 auto getter = it->second; in GetValue() local 46 if (getter(env, in, out) != napi_ok) { in GetValue()
|
/foundation/multimedia/av_session/frameworks/js/napi/session/include/ |
H A D | napi_avcontroller_callback.h | 84 NapiArgsGetter getter = NapiArgsGetter()); 91 NapiArgsGetter getter; member
|
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/common/include/ |
H A D | js_uv_queue.h | 39 UvCallback(Callbacker getter, napi_ref object = nullptr) : object_(object), getter_(std::move(getter)) { } in UvCallback()
|
/foundation/filemanagement/file_api/interfaces/kits/js/src/common/napi/ |
H A D | n_val.h | 83 static napi_property_descriptor DeclareNapiGetter(const char *name, napi_callback getter); 86 napi_callback getter,
|
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/common/napi/ |
H A D | n_val.h | 127 static napi_property_descriptor DeclareNapiGetter(const char *name, napi_callback getter); 132 napi_callback getter, napi_callback setter);
|
/third_party/jerryscript/tests/unit-core/ |
H A D | test-api-property.cpp | 65 TEST_ASSERT (jerry_value_is_undefined (prop_desc.getter)); in HWTEST_F() 90 TEST_ASSERT (jerry_value_is_undefined (prop_desc.getter)); in HWTEST_F()
|
/third_party/jsframework/runtime/main/reactivity/ |
H A D | watcher.js | 49 this.getter = expOrFn; 60 * Evaluate the getter, and re-collect dependencies. 64 const value = this.getter.call(this.vm, this.vm);
|
H A D | state.js | 92 function makeComputedGetter (getter, owner) { 93 const watcher = new Watcher(owner, getter, null, {
|
/third_party/node/deps/v8/tools/ |
H A D | generate-builtins-tests.py | 71 if proto_property_type == "getter": 84 for getter in getters: 85 result.append("print(recv.%s);" % getter["name"])
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | clsutil.py | 105 self.getter = classmethod(value).__get__ 117 return self.getter(None, cls)
|
/third_party/rust/crates/serde/test_suite/tests/ui/remote/ |
H A D | bad_getter.rs | 12 #[serde(getter = "~~~")]
|
H A D | nonremote_getter.rs | 5 #[serde(getter = "S::get")]
|