Home
last modified time | relevance | path

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

/base/telephony/core_service/utils/common/src/
Dtelephony_common_utils.cpp50 int64_t numberValue = std::stoll(inputValue); in IsValidDecValue() local
51 if ((numberValue >= INT32_MIN) && (numberValue <= INT32_MAX)) { in IsValidDecValue()
67 int64_t numberValue = std::stoll(inputValue, nullptr, HEX_TYPE); in IsValidHexValue() local
68 if ((numberValue >= INT32_MIN) && (numberValue <= INT32_MAX)) { in IsValidHexValue()
/base/hiviewdfx/hitrace/interfaces/js/kits/napi/src/
Dnapi_hitrace_util.cpp174 int32_t numberValue = 0; in GetPropertyInt32() local
175 status = napi_get_value_int32(env, propertyValue, &numberValue); in GetPropertyInt32()
177 return numberValue; in GetPropertyInt32()
198 int64_t numberValue = 0; in GetPropertyInt64() local
199 status = napi_get_value_int64(env, propertyValue, &numberValue); in GetPropertyInt64()
201 return numberValue; in GetPropertyInt64()