Home | History | Annotate | Download | only in unit-tests

Lines Matching refs:matches

13 # The expression expands to 4 words.  Of these words, none matches
27 # containing whitespace. This big word matches the regular expression,
50 # It matches once in the second word, and the \0\0 doubles that word.
51 # In the third word, the regular expression matches as early as possible,
52 # and since the matches must not overlap, the next possible match would
71 # A regular expression that matches the empty string applies before every
79 # A dot in the regular expression matches any character, even a newline.
80 # In most other contexts where regular expressions are used, a dot matches
88 # Like the ':S' modifier, the ':C' modifier matches on an expression
89 # that contains no words at all, but only if the regular expression matches an
92 # matches the empty string is uncommon in practice, as it would match before
175 # combination of alternative matches and capturing groups was seldom used, if
191 # In each of the following cases, if the regular expression matches at
192 # all, the subexpression \1 matches as well.