/third_party/rust/crates/clap/clap_complete_fig/src/ |
H A D | fig.rs | 54 fn gen_fig_inner(parent_commands: &[&str], indent: usize, cmd: &Command, buffer: &mut String) { in gen_fig_inner() 56 write!(buffer, "{:indent$}subcommands: [\n", "", indent = indent).unwrap(); in gen_fig_inner() 65 "{:indent$}{{\n{:indent$} name: [", in gen_fig_inner() 68 indent = indent + 2 in gen_fig_inner() 84 "{:indent$}{{\n{:indent in gen_fig_inner() [all...] |
/third_party/benchmark/src/ |
H A D | json_reporter.cc | 118 std::string indent(4, ' '); 121 out << indent << FormatKV("date", walltime_value) << ",\n"; 123 out << indent << FormatKV("host_name", context.sys_info.name) << ",\n"; 126 out << indent << FormatKV("executable", Context::executable_name) << ",\n"; 130 out << indent << FormatKV("num_cpus", static_cast<int64_t>(info.num_cpus)) 132 out << indent 137 out << indent 143 out << indent << "\"caches\": [\n"; 144 indent = std::string(6, ' '); 148 out << indent << "{\ [all...] |
/third_party/libabigail/src/ |
H A D | abg-leaf-reporter.cc | 76 /// @param indent the string to use for indentation. 81 const string& indent) in report_diffs() 102 out << indent << "'" << n; in report_diffs() 109 (*i)->get_canonical_diff()->report(out, indent + " "); in report_diffs() 121 /// @param indent the string to use for indentation. 126 const string& indent) in report_type_changes_from_diff_maps() 129 report_diffs(reporter, maps.get_type_decl_diff_map(), out, indent); in report_type_changes_from_diff_maps() 132 report_diffs(reporter, maps.get_enum_diff_map(), out, indent); in report_type_changes_from_diff_maps() 135 report_diffs(reporter, maps.get_class_diff_map(), out, indent); in report_type_changes_from_diff_maps() 138 report_diffs(reporter, maps.get_union_diff_map(), out, indent); in report_type_changes_from_diff_maps() 78 report_diffs(const reporter_base& r, const string_diff_ptr_map& mapp, ostream& out, const string& indent) report_diffs() argument 123 report_type_changes_from_diff_maps(const leaf_reporter& reporter, const diff_maps& maps, ostream& out, const string& indent) report_type_changes_from_diff_maps() argument 295 out << indent << "return type changed:\\n"; report() local 329 out << indent << "changed types:\\n"; report() local 347 out << indent << "changed declarations:\\n"; report() local 526 out << indent << " "; report() local 547 out << indent << " "; report() local 818 << indent << "but it doesn't have any linkage name anymore\\n"; report() local 848 out << indent; report() local 864 out << indent; report() local 914 out << indent; report() local 962 out << indent << "type of variable changed:\\n"; report() local 1024 out << indent << "1 Removed function:\\n\\n"; report() local 1039 out << indent report() local 1070 out << indent << "1 Added function:\\n\\n"; report() local 1085 << indent report() local 1121 out << indent << "1 function with some sub-type change:\\n\\n"; report() local 1188 out << indent << "1 Removed variable:\\n\\n"; report() local 1206 out << indent report() local 1229 out << indent << "1 Added variable:\\n\\n"; report() local 1247 out << indent report() local 1269 out << indent << "1 Changed variable:\\n\\n"; report() local 1307 out << indent report() local 1326 out << indent << " "; report() local 1344 out << indent report() local 1363 out << indent << " "; report() local 1380 out << indent report() local 1399 out << indent << " "; report() local 1419 out << indent report() local 1438 out << indent << " "; report() local [all...] |
H A D | abg-default-reporter.cc | 65 /// @param indent the string to use for indentatino indent. 69 const string& indent) const in report() 79 out, indent); in report() 83 out << indent in report() 91 out << indent in report() 105 /// @param indent the string to use for indentation. 108 const string& indent) const in report() 137 out << indent << "enum type " << name << was << is_now << "\n"; in report() 142 out, indent); in report() 441 out << indent; report_local_reference_type_changes() local 522 out << indent; report() local 633 out << indent << "return type changed:\\n"; report() local 708 out << indent << "is no more static"; report() local 710 out << indent << "now becomes static"; report() local 759 out << indent << "1 changed type:\\n"; report() local 781 out << indent << "1 changed declaration:\\n"; report() local 930 out << indent << " "; report() local 951 out << indent << " "; report() local 1511 << indent << "but it doesn't have any linkage name anymore\\n"; report() local 1542 out << indent; report() local 1558 out << indent; report() local 1615 out << indent; report() local 1666 out << indent << "type of variable changed:\\n"; report() local 1727 out << indent << "1 Removed function:\\n\\n"; report() local 1742 out << indent report() local 1773 out << indent << "1 Added function:\\n\\n"; report() local 1788 << indent report() local 1823 out << indent << "1 function with some indirect sub-type change:\\n\\n"; report() local 1903 out << indent << "1 Removed variable:\\n\\n"; report() local 1921 out << indent report() local 1944 out << indent << "1 Added variable:\\n\\n"; report() local 1962 out << indent report() local 1985 out << indent << "1 Changed variable:\\n\\n"; report() local 2024 out << indent report() local 2043 out << indent << " "; report() local 2061 out << indent report() local 2080 out << indent << " "; report() local 2097 out << indent report() local 2116 out << indent << " "; report() local 2136 out << indent report() local 2155 out << indent << " "; report() local [all...] |
H A D | abg-reporter-priv.cc | 230 /// @param indent the indentation string to use for the change report. 235 const string& indent) in represent_data_member() 241 out << indent in represent_data_member() 389 /// @param indent the indentation string to use for the change report. 394 const string& indent, in represent() 445 show_offset_or_size(indent + "anonymous data member at offset", in represent() 449 << indent << " " << o_pretty_representation << "\n" in represent() 450 << indent << "to:\n" in represent() 451 << indent << " " << n_pretty_representation << "\n"; in represent() 461 out << indent << "whil in represent() 232 represent_data_member(var_decl_sptr d, const diff_context_sptr& ctxt, ostream& out, const string& indent) represent_data_member() argument 391 represent(const var_diff_sptr &diff, diff_context_sptr ctxt, ostream& out, const string& indent, bool local_only) represent() argument 551 out << indent << "and "; represent() local 555 out << indent; represent() local 569 out << indent << "and "; represent() local 588 out << indent << "and "; represent() local 593 out << indent; represent() local 610 out << indent << "and "; represent() local 615 out << indent; represent() local 632 out << indent << "and "; represent() local 647 out << indent << "and "; represent() local 664 out << indent << "and "; represent() local 683 out << indent << "and "; represent() local 727 report_size_and_alignment_changes(type_or_decl_base_sptr first, type_or_decl_base_sptr second, diff_context_sptr ctxt, ostream& out, const string& indent) report_size_and_alignment_changes() argument 764 out << indent << "array type size changed from "; report_size_and_alignment_changes() local 816 out << indent; report_size_and_alignment_changes() local 824 out << indent << "type size hasn't changed\\n"; report_size_and_alignment_changes() local 830 out << indent; report_size_and_alignment_changes() local 888 report_name_size_and_alignment_changes(decl_base_sptr first, decl_base_sptr second, diff_context_sptr ctxt, ostream& out, const string& indent) report_name_size_and_alignment_changes() argument 906 out << indent; report_name_size_and_alignment_changes() local 939 report_mem_header(ostream& out, size_t number, size_t num_filtered, diff_kind k, const string& section_name, const string& indent) report_mem_header() argument 995 report_mem_header(ostream& out, diff_kind k, const string& section_name, const string& indent) report_mem_header() argument 1032 maybe_report_diff_for_member(const decl_base_sptr& decl1, const decl_base_sptr& decl2, const diff_context_sptr& ctxt, ostream& out, const string& indent) maybe_report_diff_for_member() argument 1085 maybe_report_diff_for_symbol(const elf_symbol_sptr& symbol1, const elf_symbol_sptr& symbol2, const diff_context_sptr& ctxt, ostream& out, const string& indent) maybe_report_diff_for_symbol() argument 1096 out << indent; maybe_report_diff_for_symbol() local 1125 out << indent << "symbol became "; maybe_report_diff_for_symbol() local 1135 out << indent << "symbol became "; maybe_report_diff_for_symbol() local 1177 out << indent << "namespace changed from "; maybe_report_diff_for_symbol() local 1204 show_linkage_name_and_aliases(ostream& out, const string& indent, const elf_symbol& symbol, const string_elf_symbols_map_type& sym_map) show_linkage_name_and_aliases() argument 1231 maybe_report_unreachable_type_changes(const corpus_diff& d, const corpus_diff::diff_stats &s, const string& indent, ostream& out) maybe_report_unreachable_type_changes() argument 1277 out << indent maybe_report_unreachable_type_changes() local 1306 out << indent maybe_report_unreachable_type_changes() local 1343 maybe_report_interfaces_impacted_by_diff(const diff *d, ostream &out, const string &indent) maybe_report_interfaces_impacted_by_diff() argument 1369 out << indent << "one impacted interface:\\n"; maybe_report_interfaces_impacted_by_diff() local 1392 maybe_report_interfaces_impacted_by_diff(const diff_sptr &d, ostream &out, const string &indent) maybe_report_interfaces_impacted_by_diff() argument 1416 maybe_report_data_members_replaced_by_anon_dm(const class_or_union_diff &d, ostream &out, const string &indent) maybe_report_data_members_replaced_by_anon_dm() argument 1451 out << indent << "data member"; maybe_report_data_members_replaced_by_anon_dm() local 1490 maybe_report_base_class_reordering(const class_diff &d, ostream &out, const string &indent) maybe_report_base_class_reordering() argument [all...] |
H A D | abg-reporter-priv.h | 30 out << indent << "details are being reported\n"; \ 32 out << indent << "details were reported earlier\n"; \ 56 out << indent << INTRO_TEXT << " '" << _name_ \ 60 out << indent << INTRO_TEXT << " '" \ 85 out << indent << INTRO_TEXT << " '" << _name_ << "' changed; " \ 89 out << indent << INTRO_TEXT << " '" << _name_ << "' changed"; \ 140 const string& indent); 156 const string& indent = "", 164 const string& indent); 176 const string& indent); [all...] |
H A D | abg-writer.cc | 948 /// @param initial_indent the initial number of white space to indent to. 950 /// @param level the number of indentation level to indent to. 965 /// @param initial_indent the initial number of white space to indent to. 967 /// @param level the number of indentation level to indent to. 990 /// @param indent the amount of white space to indent to. 997 unsigned indent) in annotate() 1007 do_indent(o, indent); in annotate() 1023 /// @param indent the amount of white space to indent t 995 annotate(const T& decl, write_context& ctxt, unsigned indent) annotate() argument 1028 annotate(const elf_symbol_sptr& sym, write_context& ctxt, unsigned indent) annotate() argument 1059 annotate(const typedef_decl_sptr& typedef_decl, write_context& ctxt, unsigned indent) annotate() argument 1095 annotate(const function_type_sptr& function_type, write_context& ctxt, unsigned indent) annotate() argument 1140 annotate(const function_decl_sptr& fn, write_context& ctxt, unsigned indent) annotate() argument 1190 annotate(const function_decl::parameter_sptr& parm, write_context& ctxt, unsigned indent) annotate() argument 1880 write_type(const type_base_sptr& type, write_context& ctxt, unsigned indent) write_type() argument 1920 write_decl(const decl_base_sptr& decl, write_context& ctxt, unsigned indent) write_decl() argument 1989 unsigned indent = initial_indent; write_decl_in_scope() local 2216 write_canonical_types_of_scope(const scope_decl &scope, write_context &ctxt, const unsigned indent, bool is_member_type = false) write_canonical_types_of_scope() argument 2278 write_referenced_types(write_context & ctxt, const translation_unit& tu, const unsigned indent, bool is_last) write_referenced_types() argument 2393 write_translation_unit(write_context& ctxt, const translation_unit& tu, const unsigned indent, bool is_last) write_translation_unit() argument 2516 write_type_decl(const type_decl_sptr& d, write_context& ctxt, unsigned indent) write_type_decl() argument 2556 write_namespace_decl(const namespace_decl_sptr& decl, write_context& ctxt, unsigned indent) write_namespace_decl() argument 2615 write_qualified_type_def(const qualified_type_def_sptr& decl, const string& id, write_context& ctxt, unsigned indent) write_qualified_type_def() argument 2668 write_qualified_type_def(const qualified_type_def_sptr& decl, write_context& ctxt, unsigned indent) write_qualified_type_def() argument 2691 write_pointer_type_def(const pointer_type_def_sptr& decl, const string& id, write_context& ctxt, unsigned indent) write_pointer_type_def() argument 2743 write_pointer_type_def(const pointer_type_def_sptr& decl, write_context& ctxt, unsigned indent) write_pointer_type_def() argument 2766 write_reference_type_def(const reference_type_def_sptr& decl, const string& id, write_context& ctxt, unsigned indent) write_reference_type_def() argument 2825 write_reference_type_def(const reference_type_def_sptr& decl, write_context& ctxt, unsigned indent) write_reference_type_def() argument 2840 write_array_subrange_type(const array_type_def::subrange_sptr& decl, write_context& ctxt, unsigned indent) write_array_subrange_type() argument 2914 write_array_type_def(const array_type_def_sptr& decl, const string& id, write_context& ctxt, unsigned indent) write_array_type_def() argument 2980 write_array_type_def(const array_type_def_sptr& decl, write_context& ctxt, unsigned indent) write_array_type_def() argument 3003 write_enum_type_decl(const enum_type_decl_sptr& d, const string& id, write_context& ctxt, unsigned indent) write_enum_type_decl() argument 3074 write_enum_type_decl(const enum_type_decl_sptr& decl, write_context& ctxt, unsigned indent) write_enum_type_decl() argument 3090 write_elf_symbol(const elf_symbol_sptr& sym, write_context& ctxt, unsigned indent) write_elf_symbol() argument 3158 write_elf_symbols_table(const elf_symbols& syms, write_context& ctxt, unsigned indent) write_elf_symbols_table() argument 3182 write_elf_needed(const vector<string>& needed, write_context& ctxt, unsigned indent) write_elf_needed() argument 3219 write_typedef_decl(const typedef_decl_sptr& decl, const string& id, write_context& ctxt, unsigned indent) write_typedef_decl() argument 3265 write_typedef_decl(const typedef_decl_sptr& decl, write_context& ctxt, unsigned indent) write_typedef_decl() argument 3283 write_var_decl(const var_decl_sptr& decl, write_context& ctxt, bool write_linkage_name, unsigned indent) write_var_decl() argument 3335 write_function_decl(const function_decl_sptr& decl, write_context& ctxt, bool skip_first_parm, unsigned indent) write_function_decl() argument 3434 write_function_type(const function_type_sptr& fn_type, write_context& ctxt, unsigned indent) write_function_type() argument 3538 write_class_decl_opening_tag(const class_decl_sptr& decl, const string& id, write_context& ctxt, unsigned indent, bool prepare_to_handle_empty) write_class_decl_opening_tag() argument 3610 write_union_decl_opening_tag(const union_decl_sptr& decl, const string& id, write_context& ctxt, unsigned indent, bool prepare_to_handle_empty) write_union_decl_opening_tag() argument 3671 write_class_decl(const class_decl_sptr& d, const string& id, write_context& ctxt, unsigned indent) write_class_decl() argument 3740 o << indent << "</class-decl>\\n"; write_class_decl() local 3932 write_class_decl(const class_decl_sptr& decl, write_context& ctxt, unsigned indent) write_class_decl() argument 3947 write_union_decl(const union_decl_sptr& d, const string& id, write_context& ctxt, unsigned indent) write_union_decl() argument 4078 write_union_decl(const union_decl_sptr& decl, write_context& ctxt, unsigned indent) write_union_decl() argument 4093 write_member_type_opening_tag(const type_base_sptr& t, write_context& ctxt, unsigned indent) write_member_type_opening_tag() argument 4124 write_member_type(const type_base_sptr& t, write_context& ctxt, unsigned indent) write_member_type() argument 4169 write_type_tparameter(const type_tparameter_sptr decl, write_context& ctxt, unsigned indent) write_type_tparameter() argument 4211 write_non_type_tparameter( const shared_ptr<non_type_tparameter> decl, write_context& ctxt, unsigned indent) write_non_type_tparameter() argument 4247 write_template_tparameter(const template_tparameter_sptr decl, write_context& ctxt, unsigned indent) write_template_tparameter() argument 4295 write_type_composition(const shared_ptr<type_composition> decl, write_context& ctxt, unsigned indent) write_type_composition() argument 4338 write_template_parameter(const shared_ptr<template_parameter> decl, write_context& ctxt, unsigned indent) write_template_parameter() argument 4361 write_template_parameters(const shared_ptr<template_decl> tmpl, write_context& ctxt, unsigned indent) write_template_parameters() argument 4383 write_function_tdecl(const shared_ptr<function_tdecl> decl, write_context& ctxt, unsigned indent) write_function_tdecl() argument 4428 write_class_tdecl(const shared_ptr<class_tdecl> decl, write_context& ctxt, unsigned indent) write_class_tdecl() argument 4488 write_corpus(write_context& ctxt, const corpus_sptr& corpus, unsigned indent, bool member_of_group) write_corpus() argument 4606 write_corpus_group(write_context& ctxt, const corpus_group_sptr& group, unsigned indent) write_corpus_group() argument [all...] |
/third_party/libabigail/include/ |
H A D | abg-reporter.h | 65 const std::string& indent = "") const = 0; 69 const std::string& indent = "") const = 0; 73 const std::string& indent = "") const = 0; 77 const std::string& indent = "") const = 0; 81 const std::string& indent = "") const = 0; 85 const std::string& indent = "") const = 0; 89 const std::string& indent = "") const = 0; 93 const std::string& indent = "") const = 0; 97 const std::string& indent = "") const = 0; 101 const std::string& indent [all...] |
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | t1_trce.c | 24 # define ssl_trace_list(bio, indent, msg, msglen, value, table) \ 25 do_ssl_trace_list(bio, indent, msg, msglen, value, \ 40 static int do_ssl_trace_list(BIO *bio, int indent, in do_ssl_trace_list() argument 52 BIO_indent(bio, indent, 80); in do_ssl_trace_list() 614 static void ssl_print_hex(BIO *bio, int indent, const char *name, in ssl_print_hex() argument 619 BIO_indent(bio, indent, 80); in ssl_print_hex() 626 static int ssl_print_hexbuf(BIO *bio, int indent, const char *name, size_t nlen, in ssl_print_hexbuf() argument 640 ssl_print_hex(bio, indent, name, p, blen); in ssl_print_hexbuf() 646 static int ssl_print_version(BIO *bio, int indent, const char *name, in ssl_print_version() argument 657 BIO_indent(bio, indent, 8 in ssl_print_version() 665 ssl_print_random(BIO *bio, int indent, const unsigned char **pmsg, size_t *pmsglen) ssl_print_random() argument 688 ssl_print_signature(BIO *bio, int indent, const SSL *ssl, const unsigned char **pmsg, size_t *pmsglen) ssl_print_signature() argument 706 ssl_print_extension(BIO *bio, int indent, int server, unsigned char mt, int extype, const unsigned char *ext, size_t extlen) ssl_print_extension() argument 895 ssl_print_extensions(BIO *bio, int indent, int server, unsigned char mt, const unsigned char **msgin, size_t *msginlen) ssl_print_extensions() argument 948 ssl_print_client_hello(BIO *bio, const SSL *ssl, int indent, const unsigned char *msg, size_t msglen) ssl_print_client_hello() argument 1005 dtls_print_hello_vfyrequest(BIO *bio, int indent, const unsigned char *msg, size_t msglen) dtls_print_hello_vfyrequest() argument 1015 ssl_print_server_hello(BIO *bio, int indent, const unsigned char *msg, size_t msglen) ssl_print_server_hello() argument 1099 ssl_print_client_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_client_keyex() argument 1151 ssl_print_server_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_server_keyex() argument 1219 ssl_print_certificate(BIO *bio, int indent, const unsigned char **pmsg, size_t *pmsglen) ssl_print_certificate() argument 1254 ssl_print_certificates(BIO *bio, const SSL *ssl, int server, int indent, const unsigned char *msg, size_t msglen) ssl_print_certificates() argument 1284 ssl_print_cert_request(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_cert_request() argument 1373 ssl_print_ticket(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_ticket() argument 1422 ssl_print_handshake(BIO *bio, const SSL *ssl, int server, const unsigned char *msg, size_t msglen, int indent) ssl_print_handshake() argument [all...] |
/third_party/openssl/ssl/ |
H A D | t1_trce.c | 24 # define ssl_trace_list(bio, indent, msg, msglen, value, table) \ 25 do_ssl_trace_list(bio, indent, msg, msglen, value, \ 40 static int do_ssl_trace_list(BIO *bio, int indent, in do_ssl_trace_list() argument 52 BIO_indent(bio, indent, 80); in do_ssl_trace_list() 614 static void ssl_print_hex(BIO *bio, int indent, const char *name, in ssl_print_hex() argument 619 BIO_indent(bio, indent, 80); in ssl_print_hex() 626 static int ssl_print_hexbuf(BIO *bio, int indent, const char *name, size_t nlen, in ssl_print_hexbuf() argument 640 ssl_print_hex(bio, indent, name, p, blen); in ssl_print_hexbuf() 646 static int ssl_print_version(BIO *bio, int indent, const char *name, in ssl_print_version() argument 657 BIO_indent(bio, indent, 8 in ssl_print_version() 665 ssl_print_random(BIO *bio, int indent, const unsigned char **pmsg, size_t *pmsglen) ssl_print_random() argument 688 ssl_print_signature(BIO *bio, int indent, const SSL *ssl, const unsigned char **pmsg, size_t *pmsglen) ssl_print_signature() argument 706 ssl_print_extension(BIO *bio, int indent, int server, unsigned char mt, int extype, const unsigned char *ext, size_t extlen) ssl_print_extension() argument 895 ssl_print_extensions(BIO *bio, int indent, int server, unsigned char mt, const unsigned char **msgin, size_t *msginlen) ssl_print_extensions() argument 948 ssl_print_client_hello(BIO *bio, const SSL *ssl, int indent, const unsigned char *msg, size_t msglen) ssl_print_client_hello() argument 1005 dtls_print_hello_vfyrequest(BIO *bio, int indent, const unsigned char *msg, size_t msglen) dtls_print_hello_vfyrequest() argument 1015 ssl_print_server_hello(BIO *bio, int indent, const unsigned char *msg, size_t msglen) ssl_print_server_hello() argument 1099 ssl_print_client_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_client_keyex() argument 1151 ssl_print_server_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_server_keyex() argument 1219 ssl_print_certificate(BIO *bio, int indent, const unsigned char **pmsg, size_t *pmsglen) ssl_print_certificate() argument 1254 ssl_print_certificates(BIO *bio, const SSL *ssl, int server, int indent, const unsigned char *msg, size_t msglen) ssl_print_certificates() argument 1284 ssl_print_cert_request(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_cert_request() argument 1373 ssl_print_ticket(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_ticket() argument 1422 ssl_print_handshake(BIO *bio, const SSL *ssl, int server, const unsigned char *msg, size_t msglen, int indent) ssl_print_handshake() argument [all...] |
/third_party/python/Lib/ |
H A D | pprint.py | 48 def pprint(object, stream=None, indent=1, width=80, depth=None, *, 52 stream=stream, indent=indent, width=width, depth=depth, 57 def pformat(object, indent=1, width=80, depth=None, *, 60 return PrettyPrinter(indent=indent, width=width, depth=depth, 107 def __init__(self, indent=1, width=80, depth=None, stream=None, *, 112 indent 113 Number of spaces to indent for each level of nesting. 132 indent [all...] |
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_prn.c | 20 unsigned long flag, int indent, int supported); 24 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, in X509V3_EXT_val_prn() argument 32 BIO_printf(out, "%*s", indent, ""); in X509V3_EXT_val_prn() 40 BIO_printf(out, "%*s", indent, ""); in X509V3_EXT_val_prn() 71 int indent) in X509V3_EXT_print() 87 return unknown_ext_print(out, p, extlen, flag, indent, 0); in X509V3_EXT_print() 94 return unknown_ext_print(out, p, extlen, flag, indent, 1); in X509V3_EXT_print() 102 BIO_printf(out, "%*s%s", indent, "", value); in X509V3_EXT_print() 111 BIO_printf(out, "%*s%s", indent, "", tmp); in X509V3_EXT_print() 121 X509V3_EXT_val_prn(out, nval, indent, in X509V3_EXT_print() 70 X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) X509V3_EXT_print() argument 139 X509V3_extensions_print(BIO *bp, const char *title, const STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent) X509V3_extensions_print() argument 179 unknown_ext_print(BIO *out, const unsigned char *ext, int extlen, unsigned long flag, int indent, int supported) unknown_ext_print() argument 205 X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent) X509V3_EXT_print_fp() argument [all...] |
/third_party/openssl/crypto/x509/ |
H A D | v3_prn.c | 20 unsigned long flag, int indent, int supported); 24 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, in X509V3_EXT_val_prn() argument 32 BIO_printf(out, "%*s", indent, ""); in X509V3_EXT_val_prn() 40 BIO_printf(out, "%*s", indent, ""); in X509V3_EXT_val_prn() 71 int indent) in X509V3_EXT_print() 87 return unknown_ext_print(out, p, extlen, flag, indent, 0); in X509V3_EXT_print() 94 return unknown_ext_print(out, p, extlen, flag, indent, 1); in X509V3_EXT_print() 102 BIO_printf(out, "%*s%s", indent, "", value); in X509V3_EXT_print() 111 BIO_printf(out, "%*s%s", indent, "", tmp); in X509V3_EXT_print() 121 X509V3_EXT_val_prn(out, nval, indent, in X509V3_EXT_print() 70 X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) X509V3_EXT_print() argument 139 X509V3_extensions_print(BIO *bp, const char *title, const STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent) X509V3_extensions_print() argument 179 unknown_ext_print(BIO *out, const unsigned char *ext, int extlen, unsigned long flag, int indent, int supported) unknown_ext_print() argument 205 X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent) X509V3_EXT_print_fp() argument [all...] |
/third_party/node/deps/openssl/openssl/util/ |
H A D | su-filter.pl | 12 my $indent = 0; 49 $out .= displayData($indent, 0, \@strucdata); 50 $out .= "\n$indent};\n"; 56 $indent = $1; 180 my $indent = shift; 193 $item =~ s/\n/\n$indent/g; 195 $out .= $item."\n".$indent; 197 $out .= "\n".$indent.$item."\n".$indent; 199 $currline = $indent; [all...] |
/third_party/openssl/util/ |
H A D | su-filter.pl | 12 my $indent = 0; 49 $out .= displayData($indent, 0, \@strucdata); 50 $out .= "\n$indent};\n"; 56 $indent = $1; 180 my $indent = shift; 193 $item =~ s/\n/\n$indent/g; 195 $out .= $item."\n".$indent; 197 $out .= "\n".$indent.$item."\n".$indent; 199 $currline = $indent; [all...] |
/third_party/node/deps/openssl/openssl/crypto/ct/ |
H A D | ct_prn.c | 70 void SCT_print(const SCT *sct, BIO *out, int indent, in SCT_print() argument 80 BIO_printf(out, "%*sSigned Certificate Timestamp:", indent, ""); in SCT_print() 81 BIO_printf(out, "\n%*sVersion : ", indent + 4, ""); in SCT_print() 84 BIO_printf(out, "unknown\n%*s", indent + 16, ""); in SCT_print() 85 BIO_hex_string(out, indent + 16, 16, sct->sct, sct->sct_len); in SCT_print() 92 BIO_printf(out, "\n%*sLog : %s", indent + 4, "", in SCT_print() 96 BIO_printf(out, "\n%*sLog ID : ", indent + 4, ""); in SCT_print() 97 BIO_hex_string(out, indent + 16, 16, sct->log_id, sct->log_id_len); in SCT_print() 99 BIO_printf(out, "\n%*sTimestamp : ", indent + 4, ""); in SCT_print() 102 BIO_printf(out, "\n%*sExtensions: ", indent in SCT_print() [all...] |
/third_party/openssl/crypto/ct/ |
H A D | ct_prn.c | 70 void SCT_print(const SCT *sct, BIO *out, int indent, in SCT_print() argument 80 BIO_printf(out, "%*sSigned Certificate Timestamp:", indent, ""); in SCT_print() 81 BIO_printf(out, "\n%*sVersion : ", indent + 4, ""); in SCT_print() 84 BIO_printf(out, "unknown\n%*s", indent + 16, ""); in SCT_print() 85 BIO_hex_string(out, indent + 16, 16, sct->sct, sct->sct_len); in SCT_print() 92 BIO_printf(out, "\n%*sLog : %s", indent + 4, "", in SCT_print() 96 BIO_printf(out, "\n%*sLog ID : ", indent + 4, ""); in SCT_print() 97 BIO_hex_string(out, indent + 16, 16, sct->log_id, sct->log_id_len); in SCT_print() 99 BIO_printf(out, "\n%*sTimestamp : ", indent + 4, ""); in SCT_print() 102 BIO_printf(out, "\n%*sExtensions: ", indent in SCT_print() [all...] |
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | tasn_prn.c | 104 static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, 109 static int asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, 113 const ASN1_ITEM *it, int indent, 117 static int asn1_print_fsname(BIO *out, int indent, 121 int ASN1_item_print(BIO *out, const ASN1_VALUE *ifld, int indent, in ASN1_item_print() argument 131 return asn1_item_print_ctx(out, &ifld, indent, it, NULL, sname, 0, pctx); in ASN1_item_print() 134 static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, in asn1_item_print_ctx() argument 148 parg.indent = indent; in asn1_item_print_ctx() 157 if (!nohdr && !asn1_print_fsname(out, indent, fnam in asn1_item_print_ctx() 264 asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx) asn1_template_print_ctx() argument 331 asn1_print_fsname(BIO *out, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) asn1_print_fsname() argument 419 asn1_print_obstring(BIO *out, const ASN1_STRING *str, int indent) asn1_print_obstring() argument 433 asn1_primitive_print(BIO *out, const ASN1_VALUE **fld, const ASN1_ITEM *it, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) asn1_primitive_print() argument [all...] |
/third_party/openssl/crypto/asn1/ |
H A D | tasn_prn.c | 104 static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, 109 static int asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, 113 const ASN1_ITEM *it, int indent, 117 static int asn1_print_fsname(BIO *out, int indent, 121 int ASN1_item_print(BIO *out, const ASN1_VALUE *ifld, int indent, in ASN1_item_print() argument 131 return asn1_item_print_ctx(out, &ifld, indent, it, NULL, sname, 0, pctx); in ASN1_item_print() 134 static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, in asn1_item_print_ctx() argument 148 parg.indent = indent; in asn1_item_print_ctx() 157 if (!nohdr && !asn1_print_fsname(out, indent, fnam in asn1_item_print_ctx() 264 asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx) asn1_template_print_ctx() argument 331 asn1_print_fsname(BIO *out, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) asn1_print_fsname() argument 419 asn1_print_obstring(BIO *out, const ASN1_STRING *str, int indent) asn1_print_obstring() argument 433 asn1_primitive_print(BIO *out, const ASN1_VALUE **fld, const ASN1_ITEM *it, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) asn1_primitive_print() argument [all...] |
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | ninja_syntax.py | 31 def variable(self, key, value, indent=0): 36 self._line(f"{key} = {value}", indent) 40 self.variable("depth", depth, indent=1) 56 self.variable("command", command, indent=1) 58 self.variable("description", description, indent=1) 60 self.variable("depfile", depfile, indent=1) 62 self.variable("generator", "1", indent=1) 64 self.variable("pool", pool, indent=1) 66 self.variable("restat", "1", indent=1) 68 self.variable("rspfile", rspfile, indent [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | ninja_syntax.py | 31 def variable(self, key, value, indent=0): 36 self._line(f"{key} = {value}", indent) 40 self.variable("depth", depth, indent=1) 56 self.variable("command", command, indent=1) 58 self.variable("description", description, indent=1) 60 self.variable("depfile", depfile, indent=1) 62 self.variable("generator", "1", indent=1) 64 self.variable("pool", pool, indent=1) 66 self.variable("restat", "1", indent=1) 68 self.variable("rspfile", rspfile, indent [all...] |
/third_party/spirv-headers/tools/buildHeaders/ |
H A D | header.cpp | 134 virtual std::string indent(int count = 1) const { in indent() function in __anon26546::TPrinter 135 return std::string(count * 4, ' '); // default indent level = 4 in indent() 386 void printPrologue(std::ostream& out) const override { out << "{\n" + indent() + "\"spv\":\n" + indent() + "{\n"; } 387 void printEpilogue(std::ostream& out) const override { out << indent() + "}\n}\n"; } 404 return indent(3) + '"' + name + "\": " + fmtNum("%d", val) + (isLast ? "\n" : ",\n"); 409 out << indent(2) + "\"meta\":\n" + indent(2) + "{\n"; 412 out << indent(2) + "},\n"; 415 std::string commentBeg() const override { return indent( [all...] |
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | _monkeyYaml.py | 20 def myReadDict(lines, indent=""): 26 if not lines[0].startswith(indent): 40 (lines, value) = myReadValue(lines, value, indent) 51 def myReadValue(lines, value, indent): 59 indentMatch = re.match("(" + indent + r"\s+)", lines[0]) 72 indent = 0 78 elif leading < indent: 82 indent = indent or leading 83 value += [myReadOneLine(myRemoveListHeader(indent, lin [all...] |
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bio_dump.c | 29 void *u, const void *v, int len, int indent) in BIO_dump_indent_cb() 38 if (indent < 0) in BIO_dump_indent_cb() 39 indent = 0; in BIO_dump_indent_cb() 40 else if (indent > 64) in BIO_dump_indent_cb() 41 indent = 64; in BIO_dump_indent_cb() 43 dump_width = DUMP_WIDTH_LESS_INDENT(indent); in BIO_dump_indent_cb() 48 n = BIO_snprintf(buf, sizeof(buf), "%*s%04x - ", indent, "", in BIO_dump_indent_cb() 108 int BIO_dump_indent_fp(FILE *fp, const void *s, int len, int indent) in BIO_dump_indent_fp() argument 110 return BIO_dump_indent_cb(write_fp, fp, s, len, indent); in BIO_dump_indent_fp() 124 int BIO_dump_indent(BIO *bp, const void *s, int len, int indent) in BIO_dump_indent() argument 28 BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u), void *u, const void *v, int len, int indent) BIO_dump_indent_cb() argument 129 BIO_hex_string(BIO *out, int indent, int width, const void *data, int datalen) BIO_hex_string() argument [all...] |
/third_party/openssl/crypto/bio/ |
H A D | bio_dump.c | 29 void *u, const void *v, int len, int indent) in BIO_dump_indent_cb() 38 if (indent < 0) in BIO_dump_indent_cb() 39 indent = 0; in BIO_dump_indent_cb() 40 else if (indent > 64) in BIO_dump_indent_cb() 41 indent = 64; in BIO_dump_indent_cb() 43 dump_width = DUMP_WIDTH_LESS_INDENT(indent); in BIO_dump_indent_cb() 48 n = BIO_snprintf(buf, sizeof(buf), "%*s%04x - ", indent, "", in BIO_dump_indent_cb() 108 int BIO_dump_indent_fp(FILE *fp, const void *s, int len, int indent) in BIO_dump_indent_fp() argument 110 return BIO_dump_indent_cb(write_fp, fp, s, len, indent); in BIO_dump_indent_fp() 124 int BIO_dump_indent(BIO *bp, const void *s, int len, int indent) in BIO_dump_indent() argument 28 BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u), void *u, const void *v, int len, int indent) BIO_dump_indent_cb() argument 129 BIO_hex_string(BIO *out, int indent, int width, const void *data, int datalen) BIO_hex_string() argument [all...] |