Home
last modified time | relevance | path

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

/u-boot/scripts/kconfig/
A Dconf.c39 static int indent = 1; variable
277 printf("%*c", indent, '>'); in conf_choice()
279 printf("%*c", indent, ' '); in conf_choice()
287 printf("%*schoice", indent - 1, ""); in conf_choice()
336 indent += 2; in conf_choice()
338 indent -= 2; in conf_choice()
373 indent, '*', in conf()
374 indent, '*', prompt, in conf()
375 indent, '*'); in conf()
404 indent += 2; in conf()
[all …]
A Dmconf.c275 static int indent; variable
496 indent + 1, ' ', prompt); in build_conf()
499 indent + 1, ' ', prompt, in build_conf()
509 item_make(" %*c*** %s ***", indent + 1, ' ', prompt); in build_conf()
517 item_make("---%*c%s", indent + 1, ' ', prompt); in build_conf()
561 item_add_str("%*c%s", indent + 1, ' ', menu_get_prompt(menu)); in build_conf()
567 indent += 2; in build_conf()
569 indent -= 2; in build_conf()
616 tmp = indent - tmp + 4; in build_conf()
637 indent += doint; in build_conf()
[all …]
A Dnconf.c258 static int indent; variable
762 indent + 1, ' ', prompt); in build_conf()
766 indent + 1, ' ', prompt, in build_conf()
777 indent + 1, ' ', in build_conf()
785 indent + 1, ' ', in build_conf()
839 indent += 2; in build_conf()
841 indent -= 2; in build_conf()
849 "---%*c%s", indent + 1, in build_conf()
893 tmp = indent - tmp + 4; in build_conf()
915 indent += doint; in build_conf()
[all …]
A 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 …]
/u-boot/tools/binman/
A Dimage.py275 args = [' ' * entry.indent + entry.name]
336 indent = 0
339 if entry.indent > indent:
341 elif entry.indent < indent:
345 indent = entry.indent
349 if entry_paths and indent <= min_indent:
352 min_indent = indent
A Dentry.py720 def WriteMapLine(fd, indent, name, offset, size, image_pos): argument
721 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
725 def WriteMap(self, fd, indent): argument
732 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
903 def AddEntryInfo(entries, indent, name, etype, size, image_pos, argument
919 entries.append(EntryInfo(indent, name, etype, size, image_pos,
922 def ListEntries(self, entries, indent): argument
931 self.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
A Dftest.py2643 self.assertEqual(0, ent.indent)
2652 self.assertEqual(1, ent.indent)
2661 self.assertEqual(1, ent.indent)
2670 self.assertEqual(2, ent.indent)
2679 self.assertEqual(3, ent.indent)
2688 self.assertEqual(3, ent.indent)
2697 self.assertEqual(2, ent.indent)
/u-boot/test/py/tests/
A Dtest_dm.py35 indent = line.count('| ') + ('--' in line)
43 if indent > len(stack):
46 elif indent < len(stack):
52 print('indent', cur >= prev, indent, prev, cur, stack)
A Dtest_trace.py190 timestamp, indent, func, brace = m.groups()
196 expected_indent = indent + ' '
197 elif found_start and indent == expected_indent and brace == '}':
213 timestamp, indent, func, brace = m.groups()
A Dvboot_forge.py352 def pretty_print_r(node, strblock, indent=0): argument
356 spaces = ' ' * indent
361 pretty_print_r(c, strblock, indent+1)
/u-boot/scripts/
A DLindent3 RES=`indent --version`
18 indent $PARAM "$@"
A Dcheckpatch.pl2710 my $indent;
2909 ($length, $indent) = line_stats($rawline);
3934 my $indent = length($1);
3935 if ($indent % $tabsize) {
4287 $indent != $cindent) {
4339 if ($nindent > $indent) {
4439 ($sindent < $indent) ||
4440 ($sindent == $indent &&
4442 ($sindent > $indent + $tabsize))) {
5771 $previndent == $indent) {
[all …]
/u-boot/tools/binman/etype/
A Dcbfs.py273 def ListEntries(self, entries, indent): argument
275 super().ListEntries(entries, indent)
277 entry.ListEntries(entries, indent + 1)
A Dsection.py520 def WriteMap(self, fd, indent): argument
526 Entry.WriteMapLine(fd, indent, self.name, self.offset or 0,
529 entry.WriteMap(fd, indent + 1)
809 def ListEntries(self, entries, indent): argument
811 Entry.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
814 entry.ListEntries(entries, indent + 1)
/u-boot/tools/patman/
A Dstatus.py323 def show_responses(rtags, indent, is_new): argument
341 terminal.tprint(indent + '%s %s: ' % ('+' if is_new else ' ', tag),
464 indent = ' ' * 2
465 show_responses(base_rtags, indent, False)
466 num_to_add += show_responses(new_rtags, indent, True)
A Dtest_checkpatch.py272 indent = ' '
282 indent = tab
285 return data % (signoff, license, tab, indent, tab)
/u-boot/tools/dtoc/
A Dsrc_scan.py604 indent = ' ' * len(name)
606 print('%-s: %s' % (indent, warn))
/u-boot/common/
A Dcli_hush.c437 static int free_pipe_list(struct pipe *head, int indent);
438 static int free_pipe(struct pipe *pi, int indent);
1933 static int free_pipe(struct pipe *pi, int indent) argument
1941 char *ind = indenter(indent);
1970 ret_code = free_pipe_list(child->group,indent+3);
1998 static int free_pipe_list(struct pipe *head, int indent) argument
2002 char *ind = indenter(indent);
2005 rcode = free_pipe(pi, indent);
/u-boot/tools/buildman/
A Dbuilder.py1024 indent = ' ' * 15
1026 tuple([indent, self.col.build(self.col.YELLOW, fname)] + args))
1027 tprint('%s %-38s %7s %7s %+7s' % (indent, 'function', 'old', 'new',
1032 msg = '%s %-38s %7s %7s %+7d' % (indent, name,
A Dkconfiglib.py3339 indent = len_(expline) - len_(expline.lstrip())
3340 if not indent:
3348 lines = [expline[indent:]]
3361 if len_(expline) - len_(expline.lstrip()) < indent:
3363 add_line(expline[indent:])
/u-boot/lib/efi_loader/
A Defi_boottime.c167 const char *indent = " "; in indent_string() local
168 const int max = strlen(indent); in indent_string()
171 return &indent[max - level]; in indent_string()
/u-boot/doc/develop/
A Dcheckpatch.rst649 Code indent should use tabs instead of spaces.
665 switch should be at the same indent as case.
/u-boot/doc/usage/
A Denvironment.rst44 permitted. It is a good idea to indent your scripts so that only the 'var='

Completed in 81 milliseconds