Searched refs:numberValue (Results 1 – 2 of 2) sorted by relevance
50 int64_t numberValue = std::stoll(inputValue); in IsValidDecValue() local51 if ((numberValue >= INT32_MIN) && (numberValue <= INT32_MAX)) { in IsValidDecValue()67 int64_t numberValue = std::stoll(inputValue, nullptr, HEX_TYPE); in IsValidHexValue() local68 if ((numberValue >= INT32_MIN) && (numberValue <= INT32_MAX)) { in IsValidHexValue()
174 int32_t numberValue = 0; in GetPropertyInt32() local175 status = napi_get_value_int32(env, propertyValue, &numberValue); in GetPropertyInt32()177 return numberValue; in GetPropertyInt32()198 int64_t numberValue = 0; in GetPropertyInt64() local199 status = napi_get_value_int64(env, propertyValue, &numberValue); in GetPropertyInt64()201 return numberValue; in GetPropertyInt64()