Lines Matching refs:rest
738 my ($pre_tabs, $label, $rest) = ($1, $2, $3);
743 $_ .= ("\t" x (length($label) / 8)).$rest;
826 my $rest = $_; # keeps the remainder of the line
842 $rest =~ s/^$rxp//;
867 if ($rest =~ /^\s*{?$/) {
871 if ($rest =~ /^\s*;$/) {
890 if ($rest =~ /^$/) {
908 if ($rest =~ /^$/) {
912 if ($rest =~ /^\s*special/) {
920 err("stuff after {") if ($rest =~ /[^\s}]/);
925 if (!$cont_special && $rest !~ /^\s*(while|else)\b/) {
926 if ($rest =~ /^$/) {
935 err("stuff after multi-line case") if ($rest !~ /$^/);
944 $cont_special = ($rest =~ /^\s*$special/)? 1 : 0;
945 $cont_macro = ($rest =~ /^\s*$macro/)? 1 : 0;