Searched refs:dDest (Results 1 – 1 of 1) sorted by relevance
313 if (double dDest = DEFAULT_DOUBLE_VALUE; builder_->ParseValueByKey(key, dDest) && in GetEventIntValue() local314 (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() local334 (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() local347 return dDest; in GetEventDoubleValue()