Home | History | Annotate | Download | only in testdata

Lines Matching full:quote

478 " (?:                      # opening quote...
479 [^\\\x80-\xff\n\015"] # Anything except backslash and quote
482 )* " # closing quote
492 " (?: # opening quote...
493 [^\\\x80-\xff\n\015"] # Anything except backslash and quote
496 )* " # closing quote
529 " (?: # opening quote...
530 [^\\\x80-\xff\n\015"] # Anything except backslash and quote
533 )* " # closing quote
541 " (?: # opening quote...
542 [^\\\x80-\xff\n\015"] # Anything except backslash and quote
545 )* " # closing quote
611 " (?: # opening quote...
612 [^\\\x80-\xff\n\015"] # Anything except backslash and quote
615 )* " # closing quote
625 " (?: # opening quote...
626 [^\\\x80-\xff\n\015"] # Anything except backslash and quote
629 )* " # closing quote
3621 ([\"\'])? # find single or double quote
3622 (?(1) (.*?)\1 | ([^\s]+)) # if quote found, match up to next matching
3623 # quote, otherwise match up to next space
3630 (["'])? # find single or double quote
3631 (?(1) (.*?)\1 | (\S+)) # if quote found, match up to next matching
3632 # quote, otherwise match up to next space
3639 (["'])? # find single or double quote
3640 (?(1) (.*?)\1 | (\S+)) # if quote found, match up to next matching
3641 # quote, otherwise match up to next space
4619 /(?:a(?<quote> (?<apostrophe>')|(?<realquote>")) |b(?<quote> (?<apostrophe>')|(?<realquote>")) ) (?('quote')[a-z]+|[0-9]+)/xJ