Lines Matching refs:JsObjectToString
338 …CHK_ERROR_CODE("command", JsObjectToString(env, object, "command", MAX_BUF_LEN, commandConfig->com… in JsObjToCommand()
353 CHK_ERROR_CODE("locale", JsObjectToString(env, object, "locale", bufLen, locale), false); in JsObjToGeoCodeRequest()
354 …CHK_ERROR_CODE("description", JsObjectToString(env, object, "description", bufLen, description), t… in JsObjToGeoCodeRequest()
364 … CHK_ERROR_CODE("country", JsObjectToString(env, object, "country", MAX_BUF_LEN, country), false); in JsObjToGeoCodeRequest()
404 …CHK_ERROR_CODE("locale", JsObjectToString(env, object, "locale", MAX_BUF_LEN, locale), false); // … in JsObjToReverseGeoCodeRequest()
405 … CHK_ERROR_CODE("country", JsObjectToString(env, object, "country", MAX_BUF_LEN, country), false); in JsObjToReverseGeoCodeRequest()
464 JsObjectToString(env, value, "locale", MAX_BUF_LEN, request->locale); in GetLocationInfo()
542 JsObjectToString(env, value, "locale", bufLen, address->locale_); in GetGeoAddressInfo()
543 JsObjectToString(env, value, "placeName", bufLen, address->placeName_); in GetGeoAddressInfo()
544 JsObjectToString(env, value, "countryCode", bufLen, address->countryCode_); in GetGeoAddressInfo()
545 JsObjectToString(env, value, "countryName", bufLen, address->countryName_); in GetGeoAddressInfo()
546 JsObjectToString(env, value, "administrativeArea", bufLen, address->administrativeArea_); in GetGeoAddressInfo()
547 JsObjectToString(env, value, "subAdministrativeArea", bufLen, address->subAdministrativeArea_); in GetGeoAddressInfo()
548 JsObjectToString(env, value, "locality", bufLen, address->locality_); in GetGeoAddressInfo()
549 JsObjectToString(env, value, "subLocality", bufLen, address->subLocality_); in GetGeoAddressInfo()
550 JsObjectToString(env, value, "roadName", bufLen, address->roadName_); in GetGeoAddressInfo()
551 JsObjectToString(env, value, "subRoadName", bufLen, address->subRoadName_); in GetGeoAddressInfo()
552 JsObjectToString(env, value, "premises", bufLen, address->premises_); in GetGeoAddressInfo()
553 JsObjectToString(env, value, "postalCode", bufLen, address->postalCode_); in GetGeoAddressInfo()
554 JsObjectToString(env, value, "phoneNumber", bufLen, address->phoneNumber_); in GetGeoAddressInfo()
555 JsObjectToString(env, value, "addressUrl", bufLen, address->addressUrl_); in GetGeoAddressInfo()
647 int JsObjectToString(const napi_env& env, const napi_value& object, in JsObjectToString() function