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

  /external/chromium_org/third_party/libjingle/source/talk/base/
json_unittest.cc 93 EXPECT_TRUE(GetUIntFromJson(in_sn, &out));
95 EXPECT_TRUE(GetUIntFromJson(in_n, &out));
97 EXPECT_TRUE(GetUIntFromJson(in_u, &out));
99 EXPECT_TRUE(GetUIntFromJson(in_b, &out));
101 EXPECT_TRUE(GetUIntFromJson(big_u, &out));
103 EXPECT_FALSE(GetUIntFromJson(in_s, &out));
105 // EXPECT_FALSE(GetUIntFromJson(in_si, &out));
106 EXPECT_FALSE(GetUIntFromJson(in_i, &out));
107 EXPECT_FALSE(GetUIntFromJson(big_sn, &out));
108 EXPECT_FALSE(GetUIntFromJson(big_si, &out))
    [all...]
json.cc 77 bool GetUIntFromJson(const Json::Value& in, unsigned int* out) {
176 return JsonArrayToVector(in, GetUIntFromJson, out);
248 return GetValueFromJsonArray(in, n, &x) && GetUIntFromJson(x, out);
288 return GetValueFromJsonObject(in, k, &x) && GetUIntFromJson(x, out);
json.h 48 bool GetUIntFromJson(const Json::Value& in, unsigned int* out);

Completed in 43 milliseconds