Lines Matching refs:regexp
12 # be a comment of the form // ERROR "regexp". If the compiler generates
16 # <regexp>. The <regexp> syntax is Perl but its best to stick to egrep.
95 my $regexp;
104 print STDERR "$file:$line: malformed regexp\n";
114 foreach my $regexp ($all =~ /"([^"]*)"/g) {
116 if($regexp =~ /LINE(([+-])([0-9]+))?/) {
125 $regexp = "$`$file:$n$'";
128 @match = grep { /$regexp/ } @errmsg;
131 print STDERR "errchk: $file:$line: error messages do not match '$regexp'\n";
134 @errmsg = grep { !/$regexp/ } @errmsg;