Home
last modified time | relevance | path

Searched refs:convertStrToContentType_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_content.cpp22 std::map<std::string, NotificationContent::Type> NotificationContent::convertStrToContentType_; member in OHOS::Notification::NotificationContent
338 if (convertStrToContentType_.size() <= 0) { in GetContentTypeByString()
339 convertStrToContentType_[CONTENT_TYPE_NONE] = NotificationContent::Type::NONE; in GetContentTypeByString()
340 convertStrToContentType_[CONTENT_TYPE_BASIC_TEXT] = NotificationContent::Type::BASIC_TEXT; in GetContentTypeByString()
342 convertStrToContentType_[CONTENT_TYPE_LONG_TEXT] = NotificationContent::Type::LONG_TEXT; in GetContentTypeByString()
343 convertStrToContentType_[CONTENT_TYPE_MEDIA] = NotificationContent::Type::MEDIA; in GetContentTypeByString()
344 convertStrToContentType_[CONTENT_TYPE_MULTILINE] = NotificationContent::Type::MULTILINE; in GetContentTypeByString()
345 convertStrToContentType_[CONTENT_TYPE_PICTURE] = NotificationContent::Type::PICTURE; in GetContentTypeByString()
347 convertStrToContentType_[CONTENT_TYPE_LIVE_VIEW] = NotificationContent::Type::LIVE_VIEW; in GetContentTypeByString()
349 auto iterContentType = convertStrToContentType_.find(strContentType); in GetContentTypeByString()
[all …]
/ohos5.0/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dnotification_content.h274 static std::map<std::string, NotificationContent::Type> convertStrToContentType_; variable