Searched refs:sindent (Results 1 – 5 of 5) sorted by relevance
/openbmc/openbmc-test-automation/lib/ |
H A D | gen_print.py | 1327 def sindent(text="", indent=0): function 1445 buffer += sindent("Python function call stack\n\n", indent) 1446 buffer += sindent("Line # Function name and arguments\n", indent) 1467 buffer += sindent(format_string % (line_num, func_and_args), indent) 1531 buffer += sindent( 1535 buffer += sindent(sprint_time() + "Running " + pgm_name + ".\n", indent) 1536 buffer += sindent(
|
H A D | gen_robot_ssh.py | 38 buffer = gp.sindent("", indent)
|
/openbmc/qemu/scripts/ |
H A D | checkpatch.pl | 2154 my (undef, $sindent) = line_stats("+" . $s); 2169 if ($check && (($sindent % 4) != 0 || 2170 ($sindent <= $indent && $s ne ''))) { 2171 …ERROR("suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_…
|
/openbmc/u-boot/scripts/ |
H A D | checkpatch.pl | 3553 my (undef, $sindent) = line_stats("+" . $s); 3569 (($sindent % 8) != 0 || 3570 ($sindent < $indent) || 3571 ($sindent == $indent && 3573 ($sindent > $indent + 8))) { 3575 …"suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n…
|
/openbmc/linux/scripts/ |
H A D | checkpatch.pl | 4443 my (undef, $sindent) = line_stats("+" . $s); 4459 (($sindent % $tabsize) != 0 || 4460 ($sindent < $indent) || 4461 ($sindent == $indent && 4463 ($sindent > $indent + $tabsize))) { 4465 …"suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n…
|