Lines Matching refs:statement
1791 my $statement = substr($blk, $soff, $off - $soff + 1);
1794 #warn "STATEMENT<$statement>\n";
1799 return ($statement, $condition,
1848 my ($statement, $condition, $level);
1853 ($statement, $condition, $linenr, $remain, $off, $level) =
1855 #print "F: c<$condition> s<$statement> remain<$remain>\n";
1856 push(@chunks, [ $condition, $statement ]);
1862 # could continue the statement.
1864 ($statement, $condition, $linenr, $remain, $off, $level) =
1866 #print "C: c<$condition> s<$statement> remain<$remain>\n";
1869 push(@chunks, [ $condition, $statement ]);
3952 # check multi-line statement indentation matches previous line
4217 # If this statement has no statement boundaries within
4218 # it there is no point in retrying a statement scan
4398 # preprocessor statement.
4593 # the whole statement.
5058 # cpp #elif statement condition may start with a (
5553 # check if a statement with a comma should be two statements like:
5667 # If the statement carries leading newlines,
5691 my $statement = $3;
5697 fix_insert_line($fixlinenr, "$space$statement;");
5903 # multi-statement macros should be enclosed in a do while loop, grab the
5904 # first statement and ensure its the whole macro if its not enclosed
6070 # single-statement macros do not need to be enclosed in do while (0) loop,
6097 "Single statement macros should not use a do {} while (0) loop\n" . "$herectx");
6167 "braces {} are not necessary for any arm of this statement\n" . $herectx);
6171 "braces {} should be used on all arms of this statement\n" . $herectx);
6223 "braces {} are not necessary for single statement blocks\n" . $herectx);
6230 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);