Lines Matching refs:quote_string
137 my $quote_string = "";
193 && $quote_string eq ''
206 if ($quote_string eq "'");
208 if ($quote_string eq '"');
287 if ($quote_string ne "") {
288 my $otherquote = ($quote_string eq "\"" ? "\'" : "\"");
290 if ($line =~ /(?:^|^.*?[^\\])$quote_string(.*)$/) {
296 =~ s/(^|[^\\])$otherquote[^$quote_string]*?[^\\]$otherquote/$1/g;
300 =~ s/(^|[^\\])$otherquote.*?$quote_string.*?[^\\]$otherquote/$1/g;
303 =~ s/(^|[^\\])$quote_string\\$quote_string$quote_string/$1/g;
306 my $count = () = $templine =~ /(^|[^\\])$quote_string/g;
309 $count = () = $rest =~ /(^|[^\\])$quote_string/g;
314 $quote_string = "";
327 if ($quote_string eq "") {
376 $quote_string = $quote;
523 "error: $display_filename: Unterminated quoted string found, EOF reached. Wanted: <$quote_string>, …
524 if ($quote_string ne '');