/external/chromium/base/json/ |
json_writer.h | 21 // If |pretty_print| is true, return a slightly nicer formated json string 22 // (pads with whitespace to help readability). If |pretty_print| is false, 27 static void Write(const Value* const node, bool pretty_print, 34 bool pretty_print, 43 JSONWriter(bool pretty_print, std::string* json);
|
json_writer.cc | 27 bool pretty_print, 29 WriteWithOptionalEscape(node, pretty_print, true, json); 34 bool pretty_print, 40 JSONWriter writer(pretty_print, json); 42 if (pretty_print) 46 JSONWriter::JSONWriter(bool pretty_print, std::string* json) 48 pretty_print_(pretty_print) {
|
/external/chromium_org/base/json/ |
json_writer.h | 48 bool omit_double_type_preservation, bool pretty_print,
|
json_writer.cc | 39 bool pretty_print = !!(options & OPTIONS_PRETTY_PRINT); local 42 pretty_print, json); 45 if (pretty_print) 50 bool omit_double_type_preservation, bool pretty_print, 54 pretty_print_(pretty_print),
|
json_string_value_serializer.h | 58 bool pretty_print() { return pretty_print_; } function in class:JSONStringValueSerializer
|
/external/chromium_org/tools/metrics/histograms/ |
update_extension_functions.py | 18 from pretty_print import PrettyPrintNode
|
update_policies.py | 19 from pretty_print import PrettyPrintNode
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
link_error_detector.py | 288 def pretty_print(link, col_offset=0): function in function:StringifyBrokenLinks 299 output.append("%s%s)" % (message, pretty_print(links[0], len(message)))) 302 output.append(pretty_print(link))
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
token.rb | 190 def pretty_print( printer ) method in class:ANTLR3.Token
|
/external/linux-tools-perf/util/ |
trace-event-parse.c | 2462 static void pretty_print(void *data, int size, struct event *event) function [all...] |