Searched refs:integerValue (Results 1 – 2 of 2) sorted by relevance
447 IntegerValue* integerValue = static_cast<IntegerValue*>(rightValue.get()); in Computer() local448 USCRIPT_CHECK(integerValue != nullptr, return defReturn, "Failed to cast "); in Computer()450 return make_shared<StringValue>(str + to_string(integerValue->GetValue())); in Computer()
207 int64_t integerValue = -1; in GetIntegerOptionValue() local208 status = napi_get_value_int64(env, optionValue, &integerValue); in GetIntegerOptionValue()210 map.insert(make_pair(optionName, std::to_string(integerValue))); in GetIntegerOptionValue()1025 int64_t integerValue = std::stoi(optionValue); in SetIntegerOptionProperties() local1026 napi_create_int64(env, integerValue, &optionJsValue); in SetIntegerOptionProperties()