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/chromium_org/third_party/libjingle/source/talk/base/
json_unittest.cc
71
EXPECT_TRUE(
GetIntFromJson
(in_sn, &out));
73
EXPECT_TRUE(
GetIntFromJson
(in_si, &out));
75
EXPECT_TRUE(
GetIntFromJson
(in_n, &out));
77
EXPECT_TRUE(
GetIntFromJson
(in_i, &out));
79
EXPECT_TRUE(
GetIntFromJson
(in_u, &out));
81
EXPECT_TRUE(
GetIntFromJson
(in_b, &out));
83
EXPECT_FALSE(
GetIntFromJson
(in_s, &out));
84
EXPECT_FALSE(
GetIntFromJson
(big_sn, &out));
85
EXPECT_FALSE(
GetIntFromJson
(big_si, &out));
86
EXPECT_FALSE(
GetIntFromJson
(big_u, &out))
[
all
...]
json.cc
57
bool
GetIntFromJson
(const Json::Value& in, int* out) {
171
return JsonArrayToVector(in,
GetIntFromJson
, out);
242
return GetValueFromJsonArray(in, n, &x) &&
GetIntFromJson
(x, out);
282
return GetValueFromJsonObject(in, k, &x) &&
GetIntFromJson
(x, out);
json.h
47
bool
GetIntFromJson
(const Json::Value& in, int* out);
Completed in 656 milliseconds