OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:put_in_quotes
(Results
1 - 3
of
3
) sorted by null
/external/libchrome/base/json/
string_escape.h
27
// If |
put_in_quotes
| is true, then a leading and trailing double-quote mark
30
bool
put_in_quotes
,
37
bool
put_in_quotes
,
41
// instead of appending. |
put_in_quotes
| is always true.
57
bool
put_in_quotes
);
string_escape_fuzzer.cc
14
const bool
put_in_quotes
= data[size - 1];
local
17
// overflow that touches the last byte (which is used in
put_in_quotes
).
24
base::EscapeJSONString(input_string,
put_in_quotes
, &escaped_string);
34
base::EscapeJSONString(input_string16,
put_in_quotes
, &escaped_string);
string_escape.cc
81
bool EscapeJSONStringImpl(const S& str, bool
put_in_quotes
, std::string* dest) {
84
if (
put_in_quotes
)
111
if (
put_in_quotes
)
119
bool EscapeJSONString(StringPiece str, bool
put_in_quotes
, std::string* dest) {
120
return EscapeJSONStringImpl(str,
put_in_quotes
, dest);
124
bool
put_in_quotes
,
126
return EscapeJSONStringImpl(str,
put_in_quotes
, dest);
144
bool
put_in_quotes
) {
147
if (
put_in_quotes
)
161
if (
put_in_quotes
)
[
all
...]
Completed in 330 milliseconds