/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/video/ |
H A D | video_event_hub.h | 135 void SetOnUpdate(VideoEventCallback&& onUpdate) in SetOnUpdate() argument 137 onUpdate_ = std ::move(onUpdate); in SetOnUpdate() 143 auto onUpdate = onUpdate_; in FireUpdateEvent() local 144 onUpdate(param); in FireUpdateEvent()
|
H A D | video_model_ng.h | 45 void SetOnUpdate(VideoEventFunc&& onUpdate) override;
|
H A D | video_model.h | 51 virtual void SetOnUpdate(VideoEventFunc&& onUpdate) = 0;
|
H A D | video_model_ng.cpp | 194 void VideoModelNG::SetOnUpdate(VideoEventFunc&& onUpdate) in SetOnUpdate() argument 200 eventHub->SetOnUpdate(std::move(onUpdate)); in SetOnUpdate()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | distributed_ui_manager.h | 41 void SubscribeUpdate(const std::function<void(int32_t, SerializeableObjectArray&)>& onUpdate) in SubscribeUpdate() argument 43 distributedUI_->SubscribeUpdate(onUpdate); in SubscribeUpdate()
|
H A D | ui_content_impl.h | 194 void SubscribeUpdate(const std::function<void(int32_t, SerializeableObjectArray&)>& onUpdate) override 197 return uiManager_->SubscribeUpdate(onUpdate);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | video_model_impl.h | 44 void SetOnUpdate(VideoEventFunc&& onUpdate) override;
|
H A D | video_model_impl.cpp | 162 void VideoModelImpl::SetOnUpdate(VideoEventFunc&& onUpdate) in SetOnUpdate() argument 167 EventMarker([func = std::move(onUpdate)](const std::string& param) { func(param); })); in SetOnUpdate()
|
/foundation/multimodalinput/input/service/account_manager/include/ |
H A D | account_manager.h | 57 sptr<SettingObserver> RegisterSettingObserver(const std::string &key, SettingObserver::UpdateFunc onUpdate);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | distributed_ui.h | 65 void SubscribeUpdate(const std::function<void(int32_t, SerializeableObjectArray&)>& onUpdate);
|
H A D | distributed_ui.cpp | 84 void DistributedUI::SubscribeUpdate(const std::function<void(int32_t, SerializeableObjectArray&)>& onUpdate) in SubscribeUpdate() argument 86 onUpdateCb_ = std::move(onUpdate); in SubscribeUpdate()
|
/foundation/multimodalinput/input/service/account_manager/src/ |
H A D | account_manager.cpp | 143 const std::string &key, SettingObserver::UpdateFunc onUpdate) in RegisterSettingObserver() 152 sptr<SettingObserver> settingObserver = settingHelper.CreateObserver(key, onUpdate); in RegisterSettingObserver() 142 RegisterSettingObserver( const std::string &key, SettingObserver::UpdateFunc onUpdate) RegisterSettingObserver() argument
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_video.cpp | 326 auto onUpdate = [execCtx = info.GetExecutionContext(), func = std::move(jsFunc), node = targetNode]( in JsOnUpdate() local 329 ACE_SCORING_EVENT("Video.onUpdate"); in JsOnUpdate() 334 VideoModel::GetInstance()->SetOnUpdate(std::move(onUpdate)); in JsOnUpdate() 411 JSClass<JSVideo>::StaticMethod("onUpdate", &JSVideo::JsOnUpdate); in JSBind()
|
/foundation/arkui/ace_engine/interfaces/inner_api/ace/ |
H A D | ui_content.h | 218 virtual void SubscribeUpdate(const std::function<void(int32_t, SerializeableObjectArray&)>& onUpdate) {} in SubscribeUpdate() argument
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/video/ |
H A D | video_test_ng.cpp | 649 VideoEventCallback onUpdate = [&updateCheck](const std::string& /* param */) { updateCheck = VIDEO_UPDATE_EVENT; }; in HWTEST_F() local 650 videoEventHub->SetOnUpdate(std::move(onUpdate)); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | arkComponent.js | 15264 onUpdate(callback) {
|