Lines Matching full:rest
736 # The rest of this file contains the code for the continuation checking
776 my ($pre_tabs, $label, $rest) = ($1, $2, $3);
781 $_ .= ("\t" x (length($label) / 8)).$rest;
864 my $rest = $_; # keeps the remainder of the line
878 # rest contains the remainder of the line
880 $rest =~ s/^$rxp//;
905 if ($rest =~ /^\s*\{?$/) {
909 if ($rest =~ /^\s*;$/) {
928 if ($rest =~ /^$/) {
946 if ($rest =~ /^$/) {
950 if ($rest =~ /^\s*special/) {
958 err("stuff after {") if ($rest =~ /[^\s}]/);
963 if (!$cont_special && $rest !~ /^\s*(while|else)\b/) {
964 if ($rest =~ /^$/) {
973 err("stuff after multi-line case") if ($rest !~ /$^/);
980 # cont_special and cont_macro based on the rest of the
982 $cont_special = ($rest =~ /^\s*$special/)? 1 : 0;
983 $cont_macro = ($rest =~ /^\s*$macro/)? 1 : 0;