Lines Matching refs:statement
1547 my $statement = substr($blk, $soff, $off - $soff + 1);
1550 #warn "STATEMENT<$statement>\n";
1555 return ($statement, $condition,
1604 my ($statement, $condition, $level);
1609 ($statement, $condition, $linenr, $remain, $off, $level) =
1611 #print "F: c<$condition> s<$statement> remain<$remain>\n";
1612 push(@chunks, [ $condition, $statement ]);
1618 # could continue the statement.
1620 ($statement, $condition, $linenr, $remain, $off, $level) =
1622 #print "C: c<$condition> s<$statement> remain<$remain>\n";
1625 push(@chunks, [ $condition, $statement ]);
3454 # check multi-line statement indentation matches previous line
3710 # If this statement has no statement boundaries within
3711 # it there is no point in retrying a statement scan
3891 # preprocessor statement.
4086 # the whole statement.
4532 # cpp #elif statement condition may start with a (
5023 # check if a statement with a comma should be two statements like:
5137 # If the statement carries leading newlines,
5160 my $statement = $3;
5166 fix_insert_line($fixlinenr, "$space$statement;");
5355 # multi-statement macros should be enclosed in a do while loop, grab the
5356 # first statement and ensure its the whole macro if its not enclosed
5518 # single-statement macros do not need to be enclosed in do while (0) loop,
5545 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
5615 "braces {} are not necessary for any arm of this statement\n" . $herectx);
5619 "braces {} should be used on all arms of this statement\n" . $herectx);
5671 "braces {} are not necessary for single statement blocks\n" . $herectx);
5678 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);