Home
last modified time | relevance | path

Searched refs:InputEditType (Results 1 – 10 of 10) sorted by relevance

/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
Dnotification_user_input_test.cpp49 Notification::NotificationConstant::InputEditType editType =
50 Notification::NotificationConstant::InputEditType(1);
85 Notification::NotificationConstant::InputEditType editType =
86 Notification::NotificationConstant::InputEditType(1);
219 Notification::NotificationConstant::InputEditType editType =
220 Notification::NotificationConstant::InputEditType(1);
241 Notification::NotificationConstant::InputEditType editType =
242 Notification::NotificationConstant::InputEditType::EDIT_ENABLED;
263 Notification::NotificationConstant::InputEditType editType =
264 Notification::NotificationConstant::InputEditType::EDIT_ENABLED;
[all …]
/base/notification/distributed_notification_service/interfaces/inner_api/
Dnotification_user_input.h118 …const std::shared_ptr<AAFwk::WantParams> &additional, NotificationConstant::InputEditType editType…
151 void SetEditType(NotificationConstant::InputEditType inputEditType);
158 NotificationConstant::InputEditType GetEditType() const;
298 …const std::shared_ptr<AAFwk::WantParams> &additional, NotificationConstant::InputEditType editType…
315 NotificationConstant::InputEditType editType_ {NotificationConstant::InputEditType::EDIT_AUTO};
Dnotification_constant.h25 enum InputEditType { enum
/base/notification/distributed_notification_service/test/fuzztest/notificationuserinputannex_fuzzer/
Dnotificationuserinputannex_fuzzer.cpp44 Notification::NotificationConstant::InputEditType inputEditType = in DoSomethingInterestingWithMyAPI()
45 Notification::NotificationConstant::InputEditType(inputEditTypes); in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/frameworks/ans/src/
Dnotification_user_input.cpp74 NotificationConstant::InputEditType editType) in Create()
82 if (editType == NotificationConstant::InputEditType::EDIT_ENABLED) { in Create()
114 …const std::shared_ptr<AAFwk::WantParams> &additional, NotificationConstant::InputEditType editType) in NotificationUserInput()
141 void NotificationUserInput::SetEditType(NotificationConstant::InputEditType inputEditType) in SetEditType()
146 NotificationConstant::InputEditType NotificationUserInput::GetEditType() const in GetEditType()
294 pUserInput->editType_ = static_cast<NotificationConstant::InputEditType>(editTypeValue); in FromJson()
380 editType_ = static_cast<NotificationConstant::InputEditType>(parcel.ReadInt32()); in ReadFromParcel()
/base/notification/distributed_notification_service/test/fuzztest/notificationuserinput_fuzzer/
Dnotificationuserinput_fuzzer.cpp50 Notification::NotificationConstant::InputEditType inputEditType = in DoSomethingInterestingWithMyAPI()
51 Notification::NotificationConstant::InputEditType(inputEditTypes); in DoSomethingInterestingWithMyAPI()
/base/notification/distributed_notification_service/frameworks/js/napi/src/
Dconstant.cpp170 SetNamedPropertyByInteger(env, obj, (int32_t)InputEditType::EDIT_AUTO, "EDIT_AUTO"); in InputEditTypeInit()
171 SetNamedPropertyByInteger(env, obj, (int32_t)InputEditType::EDIT_DISABLED, "EDIT_DISABLED"); in InputEditTypeInit()
172 SetNamedPropertyByInteger(env, obj, (int32_t)InputEditType::EDIT_ENABLED, "EDIT_ENABLED"); in InputEditTypeInit()
Dcommon.cpp2765 userInput->SetEditType(NotificationConstant::InputEditType(editType)); in GetNotificationUserInputByEditType()
/base/notification/distributed_notification_service/frameworks/js/napi/include/
Dcommon.h100 enum class InputEditType { enum
/base/notification/distributed_notification_service/frameworks/test/moduletest/
Dans_innerkits_module_publish_test.cpp227 EXPECT_EQ(NotificationConstant::InputEditType::EDIT_DISABLED, userInput->GetEditType()); in CheckCaseTwoResult()