OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EscapeJSONString
(Results
1 - 5
of
5
) sorted by null
/external/libchrome/base/json/
string_escape.h
29
BASE_EXPORT bool
EscapeJSONString
(StringPiece str,
36
BASE_EXPORT bool
EscapeJSONString
(StringPiece16 str,
string_escape_fuzzer.cc
24
base::
EscapeJSONString
(input_string, put_in_quotes, &escaped_string);
34
base::
EscapeJSONString
(input_string16, put_in_quotes, &escaped_string);
string_escape_unittest.cc
36
EscapeJSONString
(in_ptr, false, &out);
41
bool convert_ok =
EscapeJSONString
(in_str, false, &out);
54
EscapeJSONString
(in, false, &out);
59
EscapeJSONString
(in, true, &out_quoted);
71
EscapeJSONString
(in, false, &out);
95
EscapeJSONString
(in, false, &out);
106
EscapeJSONString
(in, false, &out);
111
EscapeJSONString
(in, true, &out_quoted);
123
EscapeJSONString
(in, false, &out);
137
EXPECT_TRUE(
EscapeJSONString
(test, false, &actual))
[
all
...]
string_escape.cc
119
bool
EscapeJSONString
(StringPiece str, bool put_in_quotes, std::string* dest) {
123
bool
EscapeJSONString
(StringPiece16 str,
json_writer.cc
117
EscapeJSONString
(value, true, json_string_);
176
EscapeJSONString
(itr.key(), true, json_string_);
Completed in 752 milliseconds