Home
last modified time | relevance | path

Searched refs:getter (Results 276 - 300 of 390) sorted by relevance

1...<<111213141516

/foundation/graphic/graphic_3d/kits/js/include/napi/
H A Dnapi_api.h958 #define DeclareGet(type, name, getter) \
959 node_props.push_back(NapiApi::GetProperty<type, NAPI_API_CLASS_NAME, &NAPI_API_CLASS_NAME::getter>(name));
962 #define DeclareGetSet(type, name, getter, setter) \
963 node_props.push_back(NapiApi::GetSetProperty<type, NAPI_API_CLASS_NAME, &NAPI_API_CLASS_NAME::getter, \
/third_party/gn/src/gn/
H A Ddesc_builder.cc304 const std::vector<T>& (ConfigValues::*getter)() const) { in render_config_value_array()
307 for (const T& cur : (values.*getter)()) in render_config_value_array()
848 const std::vector<T>& (ConfigValues::*getter)() in RenderConfigValues()
853 const std::vector<T>& vec = (iter.cur().*getter)(); in RenderConfigValues()
/third_party/python/Objects/
H A Dcodeobject.c1846 {"co_lnotab", (getter)code_getlnotab, NULL, NULL},
1847 {"_co_code_adaptive", (getter)code_getcodeadaptive, NULL, NULL},
1849 {"co_varnames", (getter)code_getvarnames, NULL, NULL},
1850 {"co_cellvars", (getter)code_getcellvars, NULL, NULL},
1851 {"co_freevars", (getter)code_getfreevars, NULL, NULL},
1852 {"co_code", (getter)code_getcode, NULL, NULL},
/foundation/multimedia/av_session/frameworks/js/napi/session/src/
H A Dnapi_playback_state.cpp120 auto getter = it->second; in GetValue() local
121 if (getter(env, in, out) != napi_ok) { in GetValue()
H A Dnapi_media_description.cpp85 auto getter = it->second; in GetValue() local
86 if (getter(env, in, out) != napi_ok) { in GetValue()
/third_party/node/deps/v8/third_party/jinja2/
H A Dfilters.py366 getter = make_attrgetter(
372 key = getter(item)
/third_party/node/tools/inspector_protocol/jinja2/
H A Dfilters.py296 getter = make_attrgetter(
303 key = getter(item)
/third_party/skia/third_party/externals/jinja2/
H A Dfilters.py366 getter = make_attrgetter(
372 key = getter(item)
/third_party/node/deps/v8/src/objects/
H A Dmap.cc1907 Handle<Object> getter, in TransitionToAccessorProperty()
1917 DCHECK(!getter->IsNull(isolate) || !setter->IsNull(isolate)); in TransitionToAccessorProperty()
1950 if (!pair->Equals(*getter, *setter)) { in TransitionToAccessorProperty()
1981 if (current_pair->Equals(*getter, *setter)) return map; in TransitionToAccessorProperty()
1984 if (!getter->IsNull(isolate) && in TransitionToAccessorProperty()
1986 current_pair->get(ACCESSOR_GETTER) != *getter) { in TransitionToAccessorProperty()
2008 pair->SetComponents(*getter, *setter); in TransitionToAccessorProperty()
1904 TransitionToAccessorProperty(Isolate* isolate, Handle<Map> map, Handle<Name> name, InternalIndex descriptor, Handle<Object> getter, Handle<Object> setter, PropertyAttributes attributes) TransitionToAccessorProperty() argument
/foundation/distributeddatamgr/pasteboard/services/core/src/
H A Dpasteboard_service.cpp337 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_SERVICE, "pasteboard has no data or entry getter"); in GetRecordValueByType()
347 auto getter = entryGetter.second; in GetRecordValueByType() local
348 if (getter.first == nullptr) { in GetRecordValueByType()
350 "entry getter is nullptr, dataId is %{public}d, recordId is %{public}d", dataId, recordId); in GetRecordValueByType()
353 auto result = getter.first->GetRecordValueByType(recordId, value); in GetRecordValueByType()
884 auto getter = entryGetter.second; in GetDelayPasteRecord() local
885 if (getter.first == nullptr) { in GetDelayPasteRecord()
886 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_SERVICE, "entry getter is nullptr, dataId is %{public}d", data.GetDataId()); in GetDelayPasteRecord()
907 auto result = getter.first->GetRecordValueByType(record->GetRecordId(), *entries[0]); in GetDelayPasteRecord()
2100 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_SERVICE, "entry getter i in GetFullDelayPasteData()
2103 auto getter = entryGetter.second; GetFullDelayPasteData() local
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dcomponent.cpp1171 // for watcher case, the attrValue is getter, and the newAttrValue is the real value in ParseAttrs()
1623 jerry_value_t Component::SetListForWatcher(jerry_value_t getter, jerry_value_t children) in SetListForWatcher() argument
1628 jerry_value_t watcher = CallJSWatcher(getter, ListForWatcherCallbackFunc, options); in SetListForWatcher()
1645 // add watcher to the array which the getter function returned in HandleListForDireactive()
1647 jerry_value_t getter = jerry_get_property(child, getterName); in HandleListForDireactive() local
1648 SetListForWatcher(getter, descriptors_); in HandleListForDireactive()
1649 jerry_release_value(getter); in HandleListForDireactive()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-object-gen.cc45 TNode<Object> getter,
102 TNode<Context> context, TNode<Object> getter, TNode<Object> setter, in ConstructAccessorDescriptor()
110 js_desc, JSAccessorPropertyDescriptor::kGetOffset, getter); in ConstructAccessorDescriptor()
1523 TNode<HeapObject> getter = LoadObjectField<HeapObject>( in FromPropertyDetails() local
1528 context, GetAccessorOrUndefined(getter, if_bailout), in FromPropertyDetails()
101 ConstructAccessorDescriptor( TNode<Context> context, TNode<Object> getter, TNode<Object> setter, TNode<BoolT> enumerable, TNode<BoolT> configurable) ConstructAccessorDescriptor() argument
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/
H A Dsample_module.cpp174 desc.getter = Getter; in TestGeneralFunc()
/foundation/arkui/napi/interfaces/inner_api/cjffi/ark_interop/
H A Dark_interop_napi.h129 ARKTS_Value getter; member
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/
H A Djs_fwk_common.h159 constexpr char DESCRIPTOR_ATTR_GETTER[] = "getter";
285 JSValue CreateWatcher(JSValue getter, JSHandler handler, JSValue options);
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/
H A Dimage_module.cpp51 desc.getter = jerry_create_external_function(getterHandler); in RegisterAttributeFunc()
/third_party/node/deps/v8/src/snapshot/
H A Dstartup-serializer.cc168 Foreign::cast(info->getter()).foreign_address(isolate()); in SerializeObjectImpl()
/third_party/python/Lib/
H A Dtypes.py193 def getter(self, fget): member in DynamicClassAttribute
/third_party/node/deps/v8/src/inspector/
H A Dvalue-mirror.cc909 if ((!mirror.getter || !mirror.getter->v8Value()->IsFunction()) &&
1609 v8::Local<v8::Value> getter = accessors->getter(); in getPrivateProperties() local
1611 if (!getter->IsNull()) { in getPrivateProperties()
1612 getterMirror = ValueMirror::create(context, getter); in getPrivateProperties()
/foundation/arkui/napi/native_engine/impl/ark/
H A Dark_native_engine.cpp852 if (propertyDescriptor.getter != nullptr || propertyDescriptor.setter != nullptr) { in NapiDefinePropertyInner()
859 if (propertyDescriptor.getter != nullptr) { in NapiDefinePropertyInner()
860 fullName += "getter"; in NapiDefinePropertyInner()
862 propertyDescriptor.getter, propertyDescriptor.data); in NapiDefinePropertyInner()
935 NapiNativeCallback getter = reinterpret_cast<NapiNativeCallback>(property.getter); in NapiCreateObjectWithProperties() local
943 if (getter != nullptr || setter != nullptr) { in NapiCreateObjectWithProperties()
947 if (getter != nullptr) { in NapiCreateObjectWithProperties()
948 fullName += "getter"; in NapiCreateObjectWithProperties()
949 localGetter = NapiNativeCreateFunction(env, fullName.c_str(), getter, dat in NapiCreateObjectWithProperties()
[all...]
/third_party/python/Modules/_decimal/
H A D_decimal.c1480 { "prec", (getter)context_getprec, (setter)context_setprec, NULL, NULL},
1481 { "Emax", (getter)context_getemax, (setter)context_setemax, NULL, NULL},
1482 { "Emin", (getter)context_getemin, (setter)context_setemin, NULL, NULL},
1483 { "rounding", (getter)context_getround, (setter)context_setround, NULL, NULL},
1484 { "capitals", (getter)context_getcapitals, (setter)context_setcapitals, NULL, NULL},
1485 { "clamp", (getter)context_getclamp, (setter)context_setclamp, NULL, NULL},
1487 { "_allcr", (getter)context_getallcr, (setter)context_setallcr, NULL, NULL},
1488 { "_traps", (getter)context_gettraps, (setter)context_settraps, NULL, NULL},
1489 { "_flags", (getter)context_getstatus, (setter)context_setstatus, NULL, NULL},
4862 { "real", (getter)dec_rea
[all...]
/third_party/node/deps/v8/src/runtime/
H A Druntime-classes.cc222 Object tmp = pair->getter(); in SubstituteValues()
334 Object tmp = pair.getter(); in AddDescriptorsByTemplate()
/third_party/python/Python/
H A Dcontext.c1195 {"var", (getter)token_get_var, NULL, NULL},
1196 {"old_value", (getter)token_get_old_value, NULL, NULL},
/third_party/python/Modules/
H A Dossaudiodev.c961 {"closed", (getter)oss_closed_getter, (setter)NULL, NULL},
962 {"mode", (getter)oss_mode_getter, (setter)NULL, NULL},
H A Dsha256module.c537 (getter)SHA256_get_block_size, NULL,
541 (getter)SHA256_get_name, NULL,

Completed in 74 milliseconds

1...<<111213141516