Lines Matching refs:rest
790 my ($pre_tabs, $label, $rest) = ($1, $2, $3);
795 $_ .= ("\t" x (length($label) / 8)).$rest;
878 my $rest = $_; # keeps the remainder of the line
894 $rest =~ s/^$rxp//;
919 if ($rest =~ /^\s*\{?$/) {
923 if ($rest =~ /^\s*;$/) {
942 if ($rest =~ /^$/) {
960 if ($rest =~ /^$/) {
964 if ($rest =~ /^\s*special/) {
972 err("stuff after {") if ($rest =~ /[^\s}]/);
977 if (!$cont_special && $rest !~ /^\s*(while|else)\b/) {
978 if ($rest =~ /^$/) {
987 err("stuff after multi-line case") if ($rest !~ /$^/);
996 $cont_special = ($rest =~ /^\s*$special/)? 1 : 0;
997 $cont_macro = ($rest =~ /^\s*$macro/)? 1 : 0;