OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetIntFromJson
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/base/
json_unittest.cc
58
EXPECT_TRUE(
GetIntFromJson
(in_sn, &out));
60
EXPECT_TRUE(
GetIntFromJson
(in_si, &out));
62
EXPECT_TRUE(
GetIntFromJson
(in_n, &out));
64
EXPECT_TRUE(
GetIntFromJson
(in_i, &out));
66
EXPECT_TRUE(
GetIntFromJson
(in_u, &out));
68
EXPECT_TRUE(
GetIntFromJson
(in_b, &out));
70
EXPECT_FALSE(
GetIntFromJson
(in_s, &out));
71
EXPECT_FALSE(
GetIntFromJson
(big_sn, &out));
72
EXPECT_FALSE(
GetIntFromJson
(big_si, &out));
73
EXPECT_FALSE(
GetIntFromJson
(big_u, &out))
[
all
...]
json.cc
42
bool
GetIntFromJson
(const Json::Value& in, int* out) {
156
return JsonArrayToVector(in,
GetIntFromJson
, out);
227
return GetValueFromJsonArray(in, n, &x) &&
GetIntFromJson
(x, out);
267
return GetValueFromJsonObject(in, k, &x) &&
GetIntFromJson
(x, out);
json.h
30
bool
GetIntFromJson
(const Json::Value& in, int* out);
Completed in 161 milliseconds