Lines Matching refs:JsObjectToString
344 …CHK_ERROR_CODE("command", JsObjectToString(env, object, "command", MAX_BUF_LEN, commandConfig->com… in JsObjToCommand()
359 CHK_ERROR_CODE("locale", JsObjectToString(env, object, "locale", bufLen, locale), false); in JsObjToGeoCodeRequest()
360 …CHK_ERROR_CODE("description", JsObjectToString(env, object, "description", bufLen, description), t… in JsObjToGeoCodeRequest()
370 … CHK_ERROR_CODE("country", JsObjectToString(env, object, "country", MAX_BUF_LEN, country), false); in JsObjToGeoCodeRequest()
410 …CHK_ERROR_CODE("locale", JsObjectToString(env, object, "locale", MAX_BUF_LEN, locale), false); // … in JsObjToReverseGeoCodeRequest()
411 … CHK_ERROR_CODE("country", JsObjectToString(env, object, "country", MAX_BUF_LEN, country), false); in JsObjToReverseGeoCodeRequest()
470 JsObjectToString(env, value, "locale", MAX_BUF_LEN, request->locale); in GetLocationInfo()
548 JsObjectToString(env, value, "locale", bufLen, address->locale_); in GetGeoAddressInfo()
549 JsObjectToString(env, value, "placeName", bufLen, address->placeName_); in GetGeoAddressInfo()
550 JsObjectToString(env, value, "countryCode", bufLen, address->countryCode_); in GetGeoAddressInfo()
551 JsObjectToString(env, value, "countryName", bufLen, address->countryName_); in GetGeoAddressInfo()
552 JsObjectToString(env, value, "administrativeArea", bufLen, address->administrativeArea_); in GetGeoAddressInfo()
553 JsObjectToString(env, value, "subAdministrativeArea", bufLen, address->subAdministrativeArea_); in GetGeoAddressInfo()
554 JsObjectToString(env, value, "locality", bufLen, address->locality_); in GetGeoAddressInfo()
555 JsObjectToString(env, value, "subLocality", bufLen, address->subLocality_); in GetGeoAddressInfo()
556 JsObjectToString(env, value, "roadName", bufLen, address->roadName_); in GetGeoAddressInfo()
557 JsObjectToString(env, value, "subRoadName", bufLen, address->subRoadName_); in GetGeoAddressInfo()
558 JsObjectToString(env, value, "premises", bufLen, address->premises_); in GetGeoAddressInfo()
559 JsObjectToString(env, value, "postalCode", bufLen, address->postalCode_); in GetGeoAddressInfo()
560 JsObjectToString(env, value, "phoneNumber", bufLen, address->phoneNumber_); in GetGeoAddressInfo()
561 JsObjectToString(env, value, "addressUrl", bufLen, address->addressUrl_); in GetGeoAddressInfo()
653 int JsObjectToString(const napi_env& env, const napi_value& object, in JsObjectToString() function