Searched refs:convertStrToContentType_ (Results 1 – 2 of 2) sorted by relevance
22 std::map<std::string, NotificationContent::Type> NotificationContent::convertStrToContentType_; member in OHOS::Notification::NotificationContent338 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 …]
274 static std::map<std::string, NotificationContent::Type> convertStrToContentType_; variable