/hal_espressif-2.7.6/tools/ldgen/ |
D | linker_script.py | 52 indent = parsed.indent 55 marker = LinkerScript.Marker(target, indent, []) 88 indent = member.indent 92 generated_line = ''.join([indent, str(rule), '\n'])
|
/hal_espressif-2.7.6/tools/kconfig/ |
D | conf.c | 40 static int indent = 1; variable 140 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string() 173 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_sym() 260 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu))); in conf_choice() 270 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu))); in conf_choice() 278 printf("%*c %s\n", indent, '*', _(menu_get_prompt(child))); in conf_choice() 284 printf("%*c", indent, '>'); in conf_choice() 286 printf("%*c", indent, ' '); in conf_choice() 294 printf(_("%*schoice"), indent - 1, ""); in conf_choice() 347 indent += 2; in conf_choice() [all …]
|
D | mconf.c | 276 static int indent; variable 498 indent + 1, ' ', prompt); in build_conf() 501 indent + 1, ' ', prompt, in build_conf() 511 item_make(" %*c*** %s ***", indent + 1, ' ', _(prompt)); in build_conf() 519 item_make("---%*c%s", indent + 1, ' ', _(prompt)); in build_conf() 563 item_add_str("%*c%s", indent + 1, ' ', _(menu_get_prompt(menu))); in build_conf() 569 indent += 2; in build_conf() 571 indent -= 2; in build_conf() 578 item_make("---%*c%s", indent + 1, ' ', _(menu_get_prompt(menu))); in build_conf() 618 tmp = indent - tmp + 4; in build_conf() [all …]
|
D | nconf.c | 256 static int indent; variable 760 indent + 1, ' ', prompt); in build_conf() 764 indent + 1, ' ', prompt, in build_conf() 775 indent + 1, ' ', in build_conf() 783 indent + 1, ' ', in build_conf() 829 item_add_str("%*c%s", indent + 1, in build_conf() 837 indent += 2; in build_conf() 839 indent -= 2; in build_conf() 847 "---%*c%s", indent + 1, in build_conf() 891 tmp = indent - tmp + 4; in build_conf() [all …]
|
D | gconf.c | 60 static gint indent; variable 1200 GtkTreeIter *parent = parents[indent - 1]; in place_node() 1201 GtkTreeIter *node = parents[indent]; in place_node() 1259 indent = 1; in update_tree() 1275 printf("%*c%s | %s\n", indent, ' ', in update_tree() 1324 indent++; in update_tree() 1326 indent--; in update_tree() 1342 indent = 1; in display_tree() 1367 printf("%*c%s: ", indent, ' ', menu_get_prompt(child)); in display_tree() 1395 indent++; in display_tree() [all …]
|
/hal_espressif-2.7.6/examples/protocols/cbor/main/ |
D | cbor_example_main.c | 26 static void indent(int nestingLevel) in indent() function 49 indent(nestingLevel); in example_dump_cbor_buffer() 61 indent(nestingLevel); in example_dump_cbor_buffer() 75 indent(nestingLevel); in example_dump_cbor_buffer()
|
/hal_espressif-2.7.6/ |
D | .flake8 | 43 E121, # continuation line under-indented for hanging indent 47 E125, # continuation line with same indent as next logical line 48 E126, # continuation line over-indented for hanging indent 49 E127, # continuation line over-indented for visual indent 50 E128, # continuation line under-indented for visual indent 51 E129, # visually indented line with same indent as next logical line 52 E131, # continuation line unaligned for hanging indent
|
D | .pylintrc | 278 # Number of spaces of indent required inside a hanging or continued line. 279 indent-after-paren=4 283 indent-string=' '
|
/hal_espressif-2.7.6/tools/ |
D | format-minimal.sh | 5 --indent=spaces=4 \
|
D | format.sh | 7 --indent=spaces=4 \
|
D | gen_esp_err_to_name.py | 300 indent = ' ' * (len(table_line) + hexnum_length + 1) 301 … w = textwrap.wrap(e.comment, width=120, initial_indent=indent, subsequent_indent=indent)
|
D | idf_size.py | 191 indent=GLOBAL_JSON_INDENT,
|
D | idf_tools.py | 956 return json.dumps(file_json, indent=2, separators=(',', ': '), sort_keys=True)
|
/hal_espressif-2.7.6/tools/ci/ |
D | check_examples_cmake_make.py | 112 pp = pprint.PrettyPrinter(indent=4)
|
/hal_espressif-2.7.6/tools/kconfig_new/ |
D | gen_kconfig_doc.py | 207 def format_rest_text(text, indent): argument 209 text = indent + text.replace('\n', '\n' + indent)
|
D | confgen.py | 462 json.dump(config_dict, f, indent=4, sort_keys=True) 579 f.write(json.dumps(result, sort_keys=True, indent=4))
|
/hal_espressif-2.7.6/tools/catch/ |
D | catch.hpp | 3673 indent( 0 ), in TextAttributes() 3679 TextAttributes& setIndent( std::size_t _value ) { indent = _value; return *this; } in setIndent() 3684 std::size_t indent; // indent of subsequent lines, or all if initialIndent is npos member 3695 std::size_t indent = _attr.initialIndent != std::string::npos in Text() local 3697 : _attr.indent; in Text() 3706 std::size_t width = (std::min)( remainder.size(), _attr.width - indent ); in Text() 3720 spliceLine( indent, remainder, width ); in Text() 3723 spliceLine( indent, remainder, width ); in Text() 3726 indent = _attr.indent; in Text() 3731 spliceLine( indent, remainder, pos ); in Text() [all …]
|
/hal_espressif-2.7.6/tools/esp_app_trace/ |
D | sysviewtrace_proc.py | 133 …print(json.dumps(proc, cls=sysview.SysViewTraceDataJsonEncoder, indent=4, separators=(',', ': '), …
|
/hal_espressif-2.7.6/docs/en/contribute/ |
D | style-guide.rst | 272 * Don't indent inside namespaces.
|