Searched refs:GetValueFromJsonObject (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/webrtc/base/ |
D | json.cc | 254 bool GetValueFromJsonObject(const Json::Value& in, const std::string& k, in GetValueFromJsonObject() function 267 return GetValueFromJsonObject(in, k, &x) && GetIntFromJson(x, out); in GetIntFromJsonObject() 273 return GetValueFromJsonObject(in, k, &x) && GetUIntFromJson(x, out); in GetUIntFromJsonObject() 279 return GetValueFromJsonObject(in, k, &x) && GetStringFromJson(x, out); in GetStringFromJsonObject() 285 return GetValueFromJsonObject(in, k, &x) && GetBoolFromJson(x, out); in GetBoolFromJsonObject() 291 return GetValueFromJsonObject(in, k, &x) && GetDoubleFromJson(x, out); in GetDoubleFromJsonObject()
|
D | json_unittest.cc | 162 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()
|
D | json.h | 73 bool GetValueFromJsonObject(const Json::Value& in, const std::string& k,
|