Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/media_foundation/services/media_monitor/common/src/
H A Devent_bean.cpp66 FALSE_RETURN_V_MSG_E(floatMap_.size() < MAX_MAP_SIZE, false, in WriteToParcel()
68 … FALSE_RETURN_V_MSG_E(parcel.WriteInt32(floatMap_.size()), false, "write floatMap.size() failed"); in WriteToParcel()
69 for (auto &it : floatMap_) { in WriteToParcel()
136 floatMap_.emplace(key, value); in Add()
156 return floatMap_; in GetFloatMap()
217 if (floatMap_.find(key) != floatMap_.end()) { in GetFloatValue()
218 return floatMap_.find(key)->second; in GetFloatValue()
247 if (floatMap_.find(key) != floatMap_.end()) { in UpdateFloatMap()
248 floatMap_[key] = value; in UpdateFloatMap()
/ohos5.0/foundation/multimedia/media_foundation/services/media_monitor/common/include/
H A Devent_bean.h72 std::map<std::string, float> floatMap_; variable