Home
last modified time | relevance | path

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

/scripts/
DLindent6 RES=`indent --version | cut -d' ' -f3`
26 indent $PARAM "$@"
Dgenerate_rust_analyzer.py181 json.dump(rust_project, sys.stdout, sort_keys=True, indent=4)
Dget_abi.pl415 my $indent = $d =~ m/^(\s+)/;
416 my $spaces = length($indent);
417 $init_indent = $indent if ($init_indent < 0);
Dcheckpatch.pl2637 my $indent;
2839 ($length, $indent) = line_stats($rawline);
2843 ($previndent, $stashindent) = ($stashindent, $indent);
3956 my $indent = length($1);
3957 if ($indent % $tabsize) {
3961 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/$tabsize)@e;
4299 $indent != $cindent) {
4351 if ($nindent > $indent) {
4451 ($sindent < $indent) ||
4452 ($sindent == $indent &&
[all …]
/scripts/kconfig/
Dconf.c43 static int indent = 1; variable
329 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string()
362 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_sym()
432 printf("%*s%s\n", indent - 1, "", menu_get_prompt(menu)); in conf_choice()
440 printf("%*c %s\n", indent, '*', menu_get_prompt(child)); in conf_choice()
446 printf("%*c", indent, '>'); in conf_choice()
448 printf("%*c", indent, ' '); in conf_choice()
457 printf("%*schoice", indent - 1, ""); in conf_choice()
538 indent, '*', in conf()
539 indent, '*', prompt, in conf()
[all …]
Dmconf.c285 static int indent; variable
485 indent + 1, ' ', prompt); in build_conf()
488 indent + 1, ' ', prompt, in build_conf()
498 item_make(" %*c*** %s ***", indent + 1, ' ', prompt); in build_conf()
506 item_make("---%*c%s", indent + 1, ' ', prompt); in build_conf()
531 item_add_str("%*c%s", indent + 1, ' ', menu_get_prompt(menu)); in build_conf()
537 item_make("---%*c%s", indent + 1, ' ', menu_get_prompt(menu)); in build_conf()
572 tmp = indent - tmp + 4; in build_conf()
582 item_add_str("%*c%s%s", indent + 1, ' ', menu_get_prompt(menu), in build_conf()
592 indent += doint; in build_conf()
[all …]
Dnconf.c265 static int indent; variable
787 indent + 1, ' ', prompt); in build_conf()
791 indent + 1, ' ', prompt, in build_conf()
802 indent + 1, ' ', in build_conf()
810 indent + 1, ' ', in build_conf()
833 item_add_str("%*c%s", indent + 1, in build_conf()
841 "---%*c%s", indent + 1, in build_conf()
880 tmp = indent - tmp + 4; in build_conf()
888 item_add_str("%*c%s%s", indent + 1, ' ', in build_conf()
899 indent += doint; in build_conf()
[all …]
Dgconf.c52 static gint indent; variable
1163 GtkTreeIter *parent = parents[indent - 1]; in place_node()
1164 GtkTreeIter *node = parents[indent]; in place_node()
1222 indent = 1; in update_tree()
1281 indent++; in update_tree()
1283 indent--; in update_tree()
1298 indent = 1; in display_tree()
1337 indent++; in display_tree()
1339 indent--; in display_tree()
Dmenu.c646 int indent = 2 * j + 4; in get_prompt_str() local
656 indent -= 3; in get_prompt_str()
659 str_printf(r, "%*c-> %s", indent, ' ', menu_get_prompt(menu)); in get_prompt_str()
/scripts/clang-tools/
Dgen_compile_commands.py224 json.dump(sorted(compile_commands, key=lambda x: x["file"]), f, indent=2, sort_keys=True)