Lines Matching full:rest
735 # The rest of this file contains the code for the continuation checking
775 my ($pre_tabs, $label, $rest) = ($1, $2, $3);
780 $_ .= ("\t" x (length($label) / 8)).$rest;
863 my $rest = $_; # keeps the remainder of the line
877 # rest contains the remainder of the line
879 $rest =~ s/^$rxp//;
904 if ($rest =~ /^\s*\{?$/) {
908 if ($rest =~ /^\s*;$/) {
927 if ($rest =~ /^$/) {
945 if ($rest =~ /^$/) {
949 if ($rest =~ /^\s*special/) {
957 err("stuff after {") if ($rest =~ /[^\s}]/);
962 if (!$cont_special && $rest !~ /^\s*(while|else)\b/) {
963 if ($rest =~ /^$/) {
972 err("stuff after multi-line case") if ($rest !~ /$^/);
979 # cont_special and cont_macro based on the rest of the
981 $cont_special = ($rest =~ /^\s*$special/)? 1 : 0;
982 $cont_macro = ($rest =~ /^\s*$macro/)? 1 : 0;