Home
last modified time | relevance | path

Searched refs:indent (Results 1 – 19 of 19) sorted by relevance

/hal_espressif-2.7.6/tools/ldgen/
Dlinker_script.py52 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/
Dconf.c40 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 …]
Dmconf.c276 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 …]
Dnconf.c256 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 …]
Dgconf.c60 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/
Dcbor_example_main.c26 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.flake843 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.pylintrc278 # 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/
Dformat-minimal.sh5 --indent=spaces=4 \
Dformat.sh7 --indent=spaces=4 \
Dgen_esp_err_to_name.py300 indent = ' ' * (len(table_line) + hexnum_length + 1)
301 … w = textwrap.wrap(e.comment, width=120, initial_indent=indent, subsequent_indent=indent)
Didf_size.py191 indent=GLOBAL_JSON_INDENT,
Didf_tools.py956 return json.dumps(file_json, indent=2, separators=(',', ': '), sort_keys=True)
/hal_espressif-2.7.6/tools/ci/
Dcheck_examples_cmake_make.py112 pp = pprint.PrettyPrinter(indent=4)
/hal_espressif-2.7.6/tools/kconfig_new/
Dgen_kconfig_doc.py207 def format_rest_text(text, indent): argument
209 text = indent + text.replace('\n', '\n' + indent)
Dconfgen.py462 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/
Dcatch.hpp3673 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/
Dsysviewtrace_proc.py133 …print(json.dumps(proc, cls=sysview.SysViewTraceDataJsonEncoder, indent=4, separators=(',', ': '), …
/hal_espressif-2.7.6/docs/en/contribute/
Dstyle-guide.rst272 * Don't indent inside namespaces.