Home
last modified time | relevance | path

Searched refs:inputKey (Results 1 – 4 of 4) sorted by relevance

/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
Dnotification_user_input_test.cpp43 std::string inputKey = "InputKey"; variable
51 …auto rrc = std::make_shared<NotificationUserInput>(inputKey, tag, options, permitFreeFormInput, pe…
54 EXPECT_EQ(ret, inputKey);
79 std::string inputKey = "InputKey"; variable
87 …auto rrc = std::make_shared<NotificationUserInput>(inputKey, tag, options, permitFreeFormInput, pe…
199 std::string inputKey = ""; variable
201 std::shared_ptr<NotificationUserInput> result = rrc->Create(inputKey);
213 std::string inputKey = ""; variable
222 std::shared_ptr<NotificationUserInput> result = rrc->Create(inputKey, tag, options,
235 std::string inputKey = "this is inputKey"; variable
[all …]
/base/notification/distributed_notification_service/interfaces/inner_api/
Dnotification_user_input.h86 const AAFwk::Want &want, const std::string &inputKey);
97 static std::shared_ptr<NotificationUserInput> Create(const std::string &inputKey);
116 …static std::shared_ptr<NotificationUserInput> Create(const std::string &inputKey, const std::strin…
278 explicit NotificationUserInput(const std::string &inputKey);
296 …NotificationUserInput(const std::string &inputKey, const std::string &tag, const std::vector<std::…
/base/notification/distributed_notification_service/frameworks/ans/src/
Dnotification_user_input.cpp50 const AAFwk::Want &want, const std::string &inputKey) in GetMimeInputsFromWant() argument
55 std::shared_ptr<NotificationUserInput> NotificationUserInput::Create(const std::string &inputKey) in Create() argument
57 if (inputKey.empty()) { in Create()
62 auto pUserInput = new (std::nothrow) NotificationUserInput(inputKey); in Create()
71 std::shared_ptr<NotificationUserInput> NotificationUserInput::Create(const std::string &inputKey, in Create() argument
76 if (inputKey.empty()) { in Create()
99 …NotificationUserInput(inputKey, tag, options, permitFreeFormInput, permitMimeTypes, realAdditional… in Create()
108 NotificationUserInput::NotificationUserInput(const std::string &inputKey) in NotificationUserInput() argument
109 : inputKey_(inputKey), additionalData_(std::make_shared<AAFwk::WantParams>()) in NotificationUserInput()
112 NotificationUserInput::NotificationUserInput(const std::string &inputKey, const std::string &tag, in NotificationUserInput() argument
[all …]
/base/notification/distributed_notification_service/test/fuzztest/notificationuserinputannex_fuzzer/
Dnotificationuserinputannex_fuzzer.cpp36 std::string inputKey(data); in DoSomethingInterestingWithMyAPI() local
46 Notification::NotificationUserInput::Create(inputKey, tag, options, permitFreeFormInput, in DoSomethingInterestingWithMyAPI()