Home
last modified time | relevance | path

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

/scripts/
DLindent6 RES=`indent --version | cut -d' ' -f3`
26 indent $PARAM "$@"
Dget_abi.pl390 my $indent = $d =~ m/^(\s+)/;
391 my $spaces = length($indent);
392 $init_indent = $indent if ($init_indent < 0);
Dcheckpatch.pl2632 my $indent;
2831 ($length, $indent) = line_stats($rawline);
2835 ($previndent, $stashindent) = ($stashindent, $indent);
3942 my $indent = length($1);
3943 if ($indent % $tabsize) {
3947 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/$tabsize)@e;
4295 $indent != $cindent) {
4347 if ($nindent > $indent) {
4447 ($sindent < $indent) ||
4448 ($sindent == $indent &&
[all …]
/scripts/kconfig/
Dconf.c41 static int indent = 1; variable
358 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string()
391 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_sym()
476 printf("%*s%s\n", indent - 1, "", menu_get_prompt(menu)); in conf_choice()
486 printf("%*s%s\n", indent - 1, "", menu_get_prompt(menu)); in conf_choice()
494 printf("%*c %s\n", indent, '*', menu_get_prompt(child)); in conf_choice()
500 printf("%*c", indent, '>'); in conf_choice()
502 printf("%*c", indent, ' '); in conf_choice()
510 printf("%*schoice", indent - 1, ""); in conf_choice()
559 indent += 2; in conf_choice()
[all …]
Dmconf.c278 static int indent; variable
494 indent + 1, ' ', prompt); in build_conf()
497 indent + 1, ' ', prompt, in build_conf()
507 item_make(" %*c*** %s ***", indent + 1, ' ', prompt); in build_conf()
515 item_make("---%*c%s", indent + 1, ' ', prompt); in build_conf()
559 item_add_str("%*c%s", indent + 1, ' ', menu_get_prompt(menu)); in build_conf()
565 indent += 2; in build_conf()
567 indent -= 2; in build_conf()
574 item_make("---%*c%s", indent + 1, ' ', menu_get_prompt(menu)); in build_conf()
614 tmp = indent - tmp + 4; in build_conf()
[all …]
Dnconf.c258 static int indent; variable
759 indent + 1, ' ', prompt); in build_conf()
763 indent + 1, ' ', prompt, in build_conf()
774 indent + 1, ' ', in build_conf()
782 indent + 1, ' ', in build_conf()
828 item_add_str("%*c%s", indent + 1, in build_conf()
836 indent += 2; in build_conf()
838 indent -= 2; in build_conf()
846 "---%*c%s", indent + 1, in build_conf()
890 tmp = indent - tmp + 4; in build_conf()
[all …]
Dgconf.c54 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 …]
/scripts/clang-tools/
Dgen_compile_commands.py241 json.dump(compile_commands, f, indent=2, sort_keys=True)