• Home
  • Raw
  • Download

Lines Matching refs:JsObjectToString

336 …CHK_ERROR_CODE("command", JsObjectToString(env, object, "command", MAX_BUF_LEN, commandConfig->com…  in JsObjToCommand()
351 CHK_ERROR_CODE("locale", JsObjectToString(env, object, "locale", bufLen, locale), false); in JsObjToGeoCodeRequest()
352 …CHK_ERROR_CODE("description", JsObjectToString(env, object, "description", bufLen, description), t… in JsObjToGeoCodeRequest()
362 … CHK_ERROR_CODE("country", JsObjectToString(env, object, "country", MAX_BUF_LEN, country), false); in JsObjToGeoCodeRequest()
402 …CHK_ERROR_CODE("locale", JsObjectToString(env, object, "locale", MAX_BUF_LEN, locale), false); // … in JsObjToReverseGeoCodeRequest()
403 … CHK_ERROR_CODE("country", JsObjectToString(env, object, "country", MAX_BUF_LEN, country), false); in JsObjToReverseGeoCodeRequest()
462 JsObjectToString(env, value, "locale", MAX_BUF_LEN, request->locale); in GetLocationInfo()
540 JsObjectToString(env, value, "locale", bufLen, address->locale_); in GetGeoAddressInfo()
541 JsObjectToString(env, value, "placeName", bufLen, address->placeName_); in GetGeoAddressInfo()
542 JsObjectToString(env, value, "countryCode", bufLen, address->countryCode_); in GetGeoAddressInfo()
543 JsObjectToString(env, value, "countryName", bufLen, address->countryName_); in GetGeoAddressInfo()
544 JsObjectToString(env, value, "administrativeArea", bufLen, address->administrativeArea_); in GetGeoAddressInfo()
545 JsObjectToString(env, value, "subAdministrativeArea", bufLen, address->subAdministrativeArea_); in GetGeoAddressInfo()
546 JsObjectToString(env, value, "locality", bufLen, address->locality_); in GetGeoAddressInfo()
547 JsObjectToString(env, value, "subLocality", bufLen, address->subLocality_); in GetGeoAddressInfo()
548 JsObjectToString(env, value, "roadName", bufLen, address->roadName_); in GetGeoAddressInfo()
549 JsObjectToString(env, value, "subRoadName", bufLen, address->subRoadName_); in GetGeoAddressInfo()
550 JsObjectToString(env, value, "premises", bufLen, address->premises_); in GetGeoAddressInfo()
551 JsObjectToString(env, value, "postalCode", bufLen, address->postalCode_); in GetGeoAddressInfo()
552 JsObjectToString(env, value, "phoneNumber", bufLen, address->phoneNumber_); in GetGeoAddressInfo()
553 JsObjectToString(env, value, "addressUrl", bufLen, address->addressUrl_); in GetGeoAddressInfo()
645 int JsObjectToString(const napi_env& env, const napi_value& object, in JsObjectToString() function