Home
last modified time | relevance | path

Searched refs:littleIcon (Results 1 – 8 of 8) sorted by relevance

/base/notification/distributed_notification_service/interfaces/inner_api/
Dnotification_request.h420 void SetLittleIcon(const std::shared_ptr<Media::PixelMap> &littleIcon);
/base/notification/distributed_notification_service/frameworks/core/src/
Dans_notification.cpp1080 auto littleIcon = request.GetLittleIcon(); in CheckImageSize() local
1081 if (CheckImageOverSizeForPixelMap(littleIcon, MAX_ICON_SIZE)) { in CheckImageSize()
/base/notification/distributed_notification_service/frameworks/test/moduletest/
Dans_fw_module_test.cpp1250 std::shared_ptr<PixelMap> littleIcon = MakePixelMap(ICON_SIZE, ICON_SIZE); variable
1251 req.SetLittleIcon(littleIcon);
1282 std::shared_ptr<PixelMap> littleIcon = MakePixelMap(ICON_SIZE, ICON_SIZE); variable
1283 req.SetLittleIcon(littleIcon);
1314 std::shared_ptr<PixelMap> littleIcon = MakePixelMap(ICON_SIZE, ICON_SIZE); variable
1315 req.SetLittleIcon(littleIcon);
Dans_innerkits_module_publish_test.cpp188 auto littleIcon = notificationRequest.GetLittleIcon(); in CheckCaseOneResult() local
190 littleIcon->GetImageInfo(outImageInfo); in CheckCaseOneResult()
/base/notification/distributed_notification_service/services/ans/test/unittest/
Dadvanced_notification_service_test.cpp1139 std::shared_ptr<PixelMap> littleIcon = MakePixelMap(ICON_SIZE, ICON_SIZE); variable
1140 req->SetLittleIcon(littleIcon);
1172 std::shared_ptr<PixelMap> littleIcon = MakePixelMap(ICON_SIZE, ICON_SIZE); variable
1173 req->SetLittleIcon(littleIcon);
1205 std::shared_ptr<PixelMap> littleIcon = MakePixelMap(ICON_SIZE, ICON_SIZE); variable
1206 req->SetLittleIcon(littleIcon);
/base/notification/distributed_notification_service/frameworks/ans/src/
Dnotification_request.cpp252 void NotificationRequest::SetLittleIcon(const std::shared_ptr<Media::PixelMap> &littleIcon) in SetLittleIcon() argument
254 littleIcon_ = littleIcon; in SetLittleIcon()
/base/notification/distributed_notification_service/services/ans/src/
Dadvanced_notification_service.cpp195 auto littleIcon = request->GetLittleIcon(); in CheckPictureSize() local
196 … if (littleIcon != nullptr && static_cast<uint32_t>(littleIcon->GetByteCount()) > MAX_ICON_SIZE) { in CheckPictureSize()
/base/notification/distributed_notification_service/frameworks/js/napi/src/
Dcommon.cpp554 std::shared_ptr<Media::PixelMap> littleIcon = request->GetLittleIcon(); in SetNotificationRequestByPixelMap() local
555 if (littleIcon) { in SetNotificationRequestByPixelMap()
558 smallIconResult = Media::PixelMapNapi::CreatePixelMap(env, littleIcon); in SetNotificationRequestByPixelMap()