/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/ |
H A D | jsi_chart_bridge.cpp | 32 shared_ptr<JsValue> propertyNames; in GetAttrOptionsAxis() local 34 valObject->GetPropertyNames(runtime, propertyNames, len); in GetAttrOptionsAxis() 36 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); in GetAttrOptionsAxis() 74 shared_ptr<JsValue> propertyNames; in GetAttrOptionsSeriesPoint() local 76 valObject->GetPropertyNames(runtime, propertyNames, len); in GetAttrOptionsSeriesPoint() 79 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); in GetAttrOptionsSeriesPoint() 128 shared_ptr<JsValue> propertyNames; in GetChartAttrOptionsSeriesLineStyle() local 130 valObject->GetPropertyNames(runtime, propertyNames, len); in GetChartAttrOptionsSeriesLineStyle() 132 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); in GetChartAttrOptionsSeriesLineStyle() 171 shared_ptr<JsValue> propertyNames; in GetChartAttrOptionsSeriesLoop() local 213 shared_ptr<JsValue> propertyNames; GetChartAttrOptionsSeries() local 322 shared_ptr<JsValue> propertyNames; ParseAttrDataStyle() local 404 shared_ptr<JsValue> propertyNames; GetAttrDataset() local 440 shared_ptr<JsValue> propertyNames; ParseAttrSegment() local 480 shared_ptr<JsValue> propertyNames; GetAttrOptionsObject() local [all...] |
H A D | jsi_stepper_bridge.cpp | 31 shared_ptr<JsValue> propertyNames; in GetAttrLabel() local 33 valObject->GetPropertyNames(runtime, propertyNames, len); in GetAttrLabel() 35 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); in GetAttrLabel()
|
H A D | jsi_badge_bridge.cpp | 30 shared_ptr<JsValue> propertyNames; in ParseBadgeConfig() local 32 valObject->GetPropertyNames(runtime, propertyNames, len); in ParseBadgeConfig() 34 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); in ParseBadgeConfig()
|
H A D | jsi_clock_bridge.cpp | 30 shared_ptr<JsValue> propertyNames; in ParseClockConfig() local 32 valObject->GetPropertyNames(runtime, propertyNames, len); in ParseClockConfig() 34 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); in ParseClockConfig()
|
H A D | js_value.h | 54 virtual bool GetPropertyNames(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> &propertyNames, int32_t &len) = 0; 56 shared_ptr<JsValue> &propertyNames, int32_t &len) = 0;
|
H A D | jsi_group_js_bridge.cpp | 699 shared_ptr<JsValue> propertyNames; 700 if (val->GetEnumerablePropertyNames(runtime, propertyNames, length)) { 703 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); 724 shared_ptr<JsValue> propertyNames; in GetRequestData() local 725 valObject->GetEnumerablePropertyNames(runtime_, propertyNames, len); in GetRequestData() 727 shared_ptr<JsValue> key = propertyNames->GetElement(runtime_, i); in GetRequestData()
|
H A D | jsi_engine.cpp | 154 shared_ptr<JsValue> propertyNames; in GetValueAsString() local 155 value->GetEnumerablePropertyNames(runtime, propertyNames, len); in GetValueAsString() 161 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); in GetValueAsString() 263 shared_ptr<JsValue> propertyNames; in GetAttrImage() local 265 valObject->GetPropertyNames(runtime, propertyNames, len); in GetAttrImage() 267 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); in GetAttrImage()
|
/foundation/multimedia/av_session/frameworks/js/napi/session/src/ |
H A D | napi_media_info_holder.cpp | 49 std::vector<std::string> propertyNames; in GetValue() local 50 auto status = NapiUtils::GetPropertyNames(env, in, propertyNames); in GetValue() 53 for (const auto& name : propertyNames) { in GetValue()
|
H A D | napi_queue_item.cpp | 35 std::vector<std::string> propertyNames; in GetValue() local 36 auto status = NapiUtils::GetPropertyNames(env, in, propertyNames); in GetValue() 39 for (const auto& name : propertyNames) { in GetValue()
|
H A D | napi_avcall_state.cpp | 75 std::vector<std::string> propertyNames; in GetValue() local 76 auto status = NapiUtils::GetPropertyNames(env, in, propertyNames); in GetValue() 78 CHECK_RETURN(propertyNames.size() == getterMap_.size(), "avcallstate property count invalid", napi_invalid_arg); in GetValue() 80 for (const auto& name : propertyNames) { in GetValue()
|
H A D | napi_avcall_meta_data.cpp | 84 std::vector<std::string> propertyNames; in GetValue() local 85 auto status = NapiUtils::GetPropertyNames(env, in, propertyNames); in GetValue() 88 for (const auto& name : propertyNames) { in GetValue()
|
H A D | napi_playback_state.cpp | 110 std::vector<std::string> propertyNames; in GetValue() local 111 auto status = NapiUtils::GetPropertyNames(env, in, propertyNames); in GetValue() 114 for (const auto& name : propertyNames) { in GetValue()
|
H A D | napi_media_description.cpp | 75 std::vector<std::string> propertyNames; in GetValue() local 76 auto status = NapiUtils::GetPropertyNames(env, in, propertyNames); in GetValue() 79 for (const auto& name : propertyNames) { in GetValue()
|
H A D | napi_meta_data.cpp | 142 std::vector<std::string> propertyNames; in GetValue() local 143 auto status = NapiUtils::GetPropertyNames(env, in, propertyNames); in GetValue() 146 for (const auto& name : propertyNames) { in GetValue()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_rect.cpp | 55 auto propertyNames = obj->GetPropertyNames(); in Create() local 56 if (!propertyNames->IsArray()) { in Create() 60 for (size_t i = 0; i < propertyNames->Length(); i++) { in Create() 61 JSRef<JSVal> value = propertyNames->GetValueAt(i); in Create()
|
H A D | js_navigation_stack.cpp | 568 auto propertyNames = obj->GetPropertyNames(); in ParseJsObject() local 569 if (!propertyNames->IsArray()) { in ParseJsObject() 572 size_t size = propertyNames->Length(); in ParseJsObject() 577 JSRef<JSVal> name = propertyNames->GetValueAt(i); in ParseJsObject()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/ |
H A D | jsi_declarative_group_js_bridge.cpp | 554 shared_ptr<JsValue> propertyNames; 555 if (val->GetEnumerablePropertyNames(runtime, propertyNames, length)) { 558 shared_ptr<JsValue> key = propertyNames->GetElement(runtime, i); 577 shared_ptr<JsValue> propertyNames; in GetRequestData() local 578 valObject->GetEnumerablePropertyNames(runtime_, propertyNames, len); in GetRequestData() 580 shared_ptr<JsValue> key = propertyNames->GetElement(runtime_, i); in GetRequestData()
|
/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/src/ |
H A D | napi_pastedata.cpp | 853 napi_value propertyNames = nullptr; in SetProperty() local 854 NAPI_CALL_RETURN_VOID(env, napi_get_property_names(env, in, &propertyNames)); in SetProperty() 856 NAPI_CALL_RETURN_VOID(env, napi_get_array_length(env, propertyNames, &propertyNamesNum)); in SetProperty() 861 NAPI_CALL_RETURN_VOID(env, napi_get_element(env, propertyNames, i, &propertyNameNapi)); in SetProperty() 905 napi_value propertyNames = nullptr; in IsProperty() local 906 NAPI_CALL_BASE(env, napi_get_property_names(env, in, &propertyNames), false); in IsProperty() 908 NAPI_CALL_BASE(env, napi_get_array_length(env, propertyNames, &propertyNamesNum), false); in IsProperty()
|
/foundation/multimedia/media_library/frameworks/js/src/ |
H A D | cloud_enhancement_napi.cpp | 347 napi_value propertyNames;
in CheckWhetherInitSuccess() local 355 NAPI_CALL_BASE(env, napi_get_property_names(env, value, &propertyNames), false);
in CheckWhetherInitSuccess() 356 NAPI_CALL_BASE(env, napi_get_array_length(env, propertyNames, &propertyLength), false);
in CheckWhetherInitSuccess()
|
H A D | media_library_napi.cpp | 481 napi_value propertyNames; in CheckWhetherInitSuccess() local 489 NAPI_CALL_BASE(env, napi_get_property_names(env, value, &propertyNames), false); in CheckWhetherInitSuccess() 490 NAPI_CALL_BASE(env, napi_get_array_length(env, propertyNames, &propertyLength), false); in CheckWhetherInitSuccess()
|
/foundation/multimedia/media_library/frameworks/js/src/sendable/ |
H A D | sendable_photo_access_helper_napi.cpp | 233 napi_value propertyNames; in CheckWhetherInitSuccess() local 241 NAPI_CALL_BASE(env, napi_get_property_names(env, value, &propertyNames), false); in CheckWhetherInitSuccess() 242 NAPI_CALL_BASE(env, napi_get_array_length(env, propertyNames, &propertyLength), false); in CheckWhetherInitSuccess()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/pa_engine/engine/jsi/ |
H A D | jsi_pa_engine.cpp | 1338 shared_ptr<JsValue> propertyNames; in OnCreate() local 1340 if (!arkJSValue->GetPropertyNames(runtime, propertyNames, len)) { in OnCreate()
|