Home
last modified time | relevance | path

Searched refs:GetValueFromJsonObject (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/api/audio/
Decho_canceller3_config_json.cc61 if (rtc::GetValueFromJsonObject(root, param_name, &json_array)) { in ReadParam()
82 if (rtc::GetValueFromJsonObject(root, param_name, &json_array)) { in ReadParam()
101 if (rtc::GetValueFromJsonObject(root, param_name, &subsection)) { in ReadParam()
118 if (rtc::GetValueFromJsonObject(root, param_name, &json_array)) { in ReadParam()
135 if (rtc::GetValueFromJsonObject(root, param_name, &json_array)) { in ReadParam()
167 success = rtc::GetValueFromJsonObject(root, "aec3", &aec3_root); in Aec3ConfigFromJsonString()
175 if (rtc::GetValueFromJsonObject(aec3_root, "buffering", &section)) { in Aec3ConfigFromJsonString()
182 if (rtc::GetValueFromJsonObject(aec3_root, "delay", &section)) { in Aec3ConfigFromJsonString()
198 if (rtc::GetValueFromJsonObject(section, "delay_selection_thresholds", in Aec3ConfigFromJsonString()
217 if (rtc::GetValueFromJsonObject(aec3_root, "filter", &section)) { in Aec3ConfigFromJsonString()
[all …]
/external/webrtc/rtc_base/strings/
Djson.cc242 bool GetValueFromJsonObject(const Json::Value& in, in GetValueFromJsonObject() function
257 return GetValueFromJsonObject(in, k, &x) && GetIntFromJson(x, out); in GetIntFromJsonObject()
264 return GetValueFromJsonObject(in, k, &x) && GetUIntFromJson(x, out); in GetUIntFromJsonObject()
271 return GetValueFromJsonObject(in, k, &x) && GetStringFromJson(x, out); in GetStringFromJsonObject()
278 return GetValueFromJsonObject(in, k, &x) && GetBoolFromJson(x, out); in GetBoolFromJsonObject()
285 return GetValueFromJsonObject(in, k, &x) && GetDoubleFromJson(x, out); in GetDoubleFromJsonObject()
Djson_unittest.cc162 EXPECT_TRUE(GetValueFromJsonObject(o, "int", &out)); in TEST()
163 EXPECT_TRUE(GetValueFromJsonObject(o, "bool", &out)); in TEST()
164 EXPECT_FALSE(GetValueFromJsonObject(o, "foo", &out)); in TEST()
165 EXPECT_FALSE(GetValueFromJsonObject(o, "", &out)); in TEST()
Djson.h64 bool GetValueFromJsonObject(const Json::Value& in,
/external/webrtc/stats/
Drtc_stats_unittest.cc266 rtc::GetValueFromJsonObject(json_output, "mSequenceBool", &json_array)); in TEST()
270 rtc::GetValueFromJsonObject(json_output, "mSequenceInt32", &json_array)); in TEST()
274 rtc::GetValueFromJsonObject(json_output, "mSequenceDouble", &json_array)); in TEST()
278 rtc::GetValueFromJsonObject(json_output, "mSequenceString", &json_array)); in TEST()
307 rtc::GetValueFromJsonObject(json_output, "mSequenceInt64", &json_array)); in TEST()
/external/webrtc/rtc_tools/rtp_generator/
Drtp_generator.cc93 if (!rtc::GetValueFromJsonObject(json, "rtp", &rtp_json)) { in ParseVideoSendStreamConfig()