Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/hiview/base/
H A Dsys_event.cpp313 if (double dDest = DEFAULT_DOUBLE_VALUE; builder_->ParseValueByKey(key, dDest) && in GetEventIntValue() local
314 (dDest >= static_cast<double>(std::numeric_limits<int64_t>::min())) && in GetEventIntValue()
315 (dDest <= static_cast<double>(std::numeric_limits<int64_t>::max()))) { in GetEventIntValue()
316 return static_cast<int64_t>(dDest); in GetEventIntValue()
333 if (double dDest = DEFAULT_DOUBLE_VALUE; builder_->ParseValueByKey(key, dDest) && in GetEventUintValue() local
334 (dDest >= static_cast<double>(std::numeric_limits<uint64_t>::min())) && in GetEventUintValue()
335 (dDest <= static_cast<double>(std::numeric_limits<uint64_t>::max()))) { in GetEventUintValue()
336 return static_cast<uint64_t>(dDest); in GetEventUintValue()
346 if (double dDest = DEFAULT_DOUBLE_VALUE; builder_->ParseValueByKey(key, dDest)) { in GetEventDoubleValue() local
347 return dDest; in GetEventDoubleValue()