Home
last modified time | relevance | path

Searched refs:onCallbackEvent (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/base/
H A Dframe_node_test_ng.h42 const std::function<void(float)> onCallbackEvent = [](float) {};
H A Dframe_node_test_ng.cpp1180 FRAME_NODE->CreateAnimatablePropertyFloat(NAME, value, onCallbackEvent);
1183 FRAME_NODE->CreateAnimatablePropertyFloat(NAME, value, onCallbackEvent);
1190 FRAME_NODE->CreateAnimatablePropertyFloat(NAME, value, onCallbackEvent);
1237 std::function<void(const RefPtr<NG::CustomAnimatableArithmetic>&)> onCallbackEvent; variable
1238 FRAME_NODE->CreateAnimatableArithmeticProperty(NAME, value, onCallbackEvent);
1240 FRAME_NODE->CreateAnimatableArithmeticProperty(NAME, value, onCallbackEvent);
/ohos5.0/drivers/peripheral/wlan/test/unittest/chip/
H A Dwifi_hal_fn.cpp127 static WifiError RegisterIfaceCallBack(const char *ifaceName, WifiCallbackHandler onCallbackEvent) in RegisterIfaceCallBack() argument
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dview_abstract_model_ng.h1495 …std::string& propertyName, float value, const std::function<void(float)>& onCallbackEvent) override in CreateAnimatablePropertyFloat() argument
1497 ViewAbstract::CreateAnimatablePropertyFloat(propertyName, value, onCallbackEvent); in CreateAnimatablePropertyFloat()
1506 std::function<void(const RefPtr<CustomAnimatableArithmetic>&)>& onCallbackEvent) override in CreateAnimatableArithmeticProperty() argument
1508 ViewAbstract::CreateAnimatableArithmeticProperty(propertyName, value, onCallbackEvent); in CreateAnimatableArithmeticProperty()
H A Dview_abstract_model.h399 …nst std::string& propertyName, float value, const std::function<void(float)>& onCallbackEvent) = 0;
404 std::function<void(const RefPtr<NG::CustomAnimatableArithmetic>&)>& onCallbackEvent) = 0;
H A Dframe_node.h684 …const std::function<void(float)>& onCallbackEvent, const PropertyUnit& propertyType = PropertyUnit…
688 std::function<void(const RefPtr<CustomAnimatableArithmetic>&)>& onCallbackEvent);
H A Dview_abstract.h439 … const std::string& propertyName, float value, const std::function<void(float)>& onCallbackEvent);
443 std::function<void(const RefPtr<CustomAnimatableArithmetic>&)>& onCallbackEvent);
H A Dview_abstract.cpp2828 const std::string& propertyName, float value, const std::function<void(float)>& onCallbackEvent) in CreateAnimatablePropertyFloat() argument
2832 frameNode->CreateAnimatablePropertyFloat(propertyName, value, onCallbackEvent); in CreateAnimatablePropertyFloat()
2844 std::function<void(const RefPtr<CustomAnimatableArithmetic>&)>& onCallbackEvent) in CreateAnimatableArithmeticProperty() argument
2848 frameNode->CreateAnimatableArithmeticProperty(propertyName, value, onCallbackEvent); in CreateAnimatableArithmeticProperty()
H A Dframe_node.cpp3790 const std::function<void(float)>& onCallbackEvent, const PropertyUnit& propertyType) in CreateAnimatablePropertyFloat() argument
3798 …uto property = AceType::MakeRefPtr<NodeAnimatablePropertyFloat>(value, std::move(onCallbackEvent)); in CreateAnimatablePropertyFloat()
3833 std::function<void(const RefPtr<CustomAnimatableArithmetic>&)>& onCallbackEvent) in CreateAnimatableArithmeticProperty() argument
3841 …roperty = AceType::MakeRefPtr<NodeAnimatableArithmeticProperty>(value, std::move(onCallbackEvent)); in CreateAnimatableArithmeticProperty()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dview_abstract_model_impl.h309 const std::function<void(float)>& onCallbackEvent) override {}; in CreateAnimatablePropertyFloat() argument
314 … std::function<void(const RefPtr<NG::CustomAnimatableArithmetic>&)>& onCallbackEvent) override {}; in CreateAnimatableArithmeticProperty() argument
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view_abstract.cpp8488 std::function<void(float)> onCallbackEvent; in JSCreateAnimatableProperty() local
8490onCallbackEvent = [execCtx = info.GetExecutionContext(), func = std::move(jsFunc), id = Container:… in JSCreateAnimatableProperty()
8498 …stractModel::GetInstance()->CreateAnimatablePropertyFloat(propertyName, numValue, onCallbackEvent); in JSCreateAnimatableProperty()
8505 std::function<void(const RefPtr<NG::CustomAnimatableArithmetic>&)> onCallbackEvent; in JSCreateAnimatableProperty() local
8507onCallbackEvent = [execCtx = info.GetExecutionContext(), func = std::move(jsFunc), id = Container:… in JSCreateAnimatableProperty()
8520 propertyName, animatableArithmetic, onCallbackEvent); in JSCreateAnimatableProperty()