Lines Matching full:pattern

4 # given pattern.
8 # 1. Pattern characters '*', '?' and '\'
20 # 1. Pattern characters '*', '?' and '\'
26 # The pattern is anchored both at the beginning and at the end of the word.
27 # Since the pattern 'e' does not contain any pattern matching characters, it
33 # The pattern character '?' matches exactly 1 character, the pattern character
34 # '*' matches 0 or more characters. The whole pattern matches all words that
40 # A pattern without placeholders only matches itself.
45 # A pattern that does not start with '*' is anchored at the beginning.
50 # A pattern that does not end with '*' is anchored at the end.
189 # ( while parsing the pattern, starts a nesting level
190 # ) while parsing the pattern, ends a nesting level
191 # { while parsing the pattern, starts a nesting level
192 # } while parsing the pattern, ends a nesting level
193 # : while parsing the pattern, terminates the pattern
194 # $ while parsing the pattern, starts a nested expression
197 # The pattern can come from an expression. For single-letter
212 # : terminates the pattern
275 # Adding another '*?' to the pattern called Str_Match 20,630,572 times.
276 # Adding another '*?' to the pattern called Str_Match 136,405,672 times.
277 # Adding another '*?' to the pattern called Str_Match 773,168,722 times.
278 # Adding another '*?' to the pattern called Str_Match 3,815,481,072 times.
288 # expect+1: Unfinished character list in pattern 'a[' of modifier ':M'
296 # expect+1: Unfinished character list in pattern 'a[^' of modifier ':M'
304 # expect+1: Unfinished character list in pattern '[-x1-3' of modifier ':M'
312 # expect+1: Unfinished character list in pattern '*[-x1-3' of modifier ':M'
321 # expect+1: Unfinished character list in pattern '[^-x1-3' of modifier ':M'
334 PATTERN= ${:U?[\\}
335 # expect+1: Unfinished character list in pattern '?[\' of modifier ':M'
336 .if ${WORDS:M${PATTERN}} != "\\\\ x\\"
343 # expect+1: Unfinished character range in pattern '[x-' of modifier ':M'
355 # expect+1: Unfinished character range in pattern '[^x-' of modifier ':M'
361 # expect+2: Unfinished character list in pattern '[' of modifier ':M'
376 # This 'M\' becomes an indirect modifier ':M' with the pattern '\'.
377 # The pattern '\' never matches.
382 # This 'M\:\' becomes an indirect modifier ':M' with the pattern ':\'.
383 # The pattern ':\' never matches.