OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetUIntFromJson
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/base/
json_unittest.cc
80
EXPECT_TRUE(
GetUIntFromJson
(in_sn, &out));
82
EXPECT_TRUE(
GetUIntFromJson
(in_n, &out));
84
EXPECT_TRUE(
GetUIntFromJson
(in_u, &out));
86
EXPECT_TRUE(
GetUIntFromJson
(in_b, &out));
88
EXPECT_TRUE(
GetUIntFromJson
(big_u, &out));
90
EXPECT_FALSE(
GetUIntFromJson
(in_s, &out));
92
// EXPECT_FALSE(
GetUIntFromJson
(in_si, &out));
93
EXPECT_FALSE(
GetUIntFromJson
(in_i, &out));
94
EXPECT_FALSE(
GetUIntFromJson
(big_sn, &out));
95
EXPECT_FALSE(
GetUIntFromJson
(big_si, &out))
[
all
...]
json.cc
62
bool
GetUIntFromJson
(const Json::Value& in, unsigned int* out) {
161
return JsonArrayToVector(in,
GetUIntFromJson
, out);
233
return GetValueFromJsonArray(in, n, &x) &&
GetUIntFromJson
(x, out);
273
return GetValueFromJsonObject(in, k, &x) &&
GetUIntFromJson
(x, out);
json.h
31
bool
GetUIntFromJson
(const Json::Value& in, unsigned int* out);
Completed in 49 milliseconds