HomeSort by relevance Sort by last modified time
    Searched refs:GetUIntFromJson (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/webrtc/base/
json_unittest.cc 76 EXPECT_TRUE(GetUIntFromJson(in_sn, &out));
78 EXPECT_TRUE(GetUIntFromJson(in_n, &out));
80 EXPECT_TRUE(GetUIntFromJson(in_u, &out));
82 EXPECT_TRUE(GetUIntFromJson(in_b, &out));
84 EXPECT_TRUE(GetUIntFromJson(big_u, &out));
86 EXPECT_FALSE(GetUIntFromJson(in_s, &out));
88 // EXPECT_FALSE(GetUIntFromJson(in_si, &out));
89 EXPECT_FALSE(GetUIntFromJson(in_i, &out));
90 EXPECT_FALSE(GetUIntFromJson(big_sn, &out));
91 EXPECT_FALSE(GetUIntFromJson(big_si, &out))
    [all...]
json.cc 60 bool GetUIntFromJson(const Json::Value& in, unsigned int* out) {
159 return JsonArrayToVector(in, GetUIntFromJson, out);
231 return GetValueFromJsonArray(in, n, &x) && GetUIntFromJson(x, out);
271 return GetValueFromJsonObject(in, k, &x) && GetUIntFromJson(x, out);
json.h 31 bool GetUIntFromJson(const Json::Value& in, unsigned int* out);

Completed in 152 milliseconds