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.
84 my $regexp;
93 print STDERR "$file:$line: malformed regexp\n";
103 foreach my $regexp ($all =~ /"([^"]*)"/g) {
105 if($regexp =~ /LINE(([+-])([0-9]+))?/) {
114 $regexp = "$`$file:$n$'";
117 @match = grep { /$regexp/ } @errmsg;
120 print STDERR "errchk: $file:$line: error messages do not match '$regexp'\n";
123 @errmsg = grep { !/$regexp/ } @errmsg;