Home | History | Annotate | Download | only in pcrecpp

Lines Matching refs:quoted

487 // A meta-quoted string, interpreted as a pattern, should always match
490 string quoted = RE::QuoteMeta(unquoted);
491 RE re(quoted, options);
496 // quoted, should not generally match a string the unquoted string does.
499 string quoted = RE::QuoteMeta(unquoted);
500 RE re(quoted, options);
504 // Tests that quoted meta characters match their original strings,