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

Lines Matching refs:pattern

4 # given pattern.
8 # 1. Pattern characters '*', '?' and '\'
24 # 1. Pattern characters '*', '?' and '\'
30 # The pattern is anchored both at the beginning and at the end of the word.
31 # Since the pattern 'e' does not contain any pattern matching characters, it
37 # The pattern character '?' matches exactly 1 character, the pattern character
38 # '*' matches 0 or more characters. The whole pattern matches all words that
44 # A pattern without placeholders only matches itself.
49 # A pattern that does not start with '*' is anchored at the beginning.
54 # A pattern that does not end with '*' is anchored at the end.
193 # ( while parsing the pattern, starts a nesting level
194 # ) while parsing the pattern, ends a nesting level
195 # { while parsing the pattern, starts a nesting level
196 # } while parsing the pattern, ends a nesting level
197 # : while parsing the pattern, terminates the pattern
198 # $ while parsing the pattern, starts a nested expression
201 # The pattern can come from an expression. For single-letter
216 # : terminates the pattern
279 # Adding another '*?' to the pattern called Str_Match 20,630,572 times.
280 # Adding another '*?' to the pattern called Str_Match 136,405,672 times.
281 # Adding another '*?' to the pattern called Str_Match 773,168,722 times.
282 # Adding another '*?' to the pattern called Str_Match 3,815,481,072 times.
292 # expect+1: Unfinished character list in pattern "a[" of modifier ":M"
300 # expect+1: Unfinished character list in pattern "a[^" of modifier ":M"
308 # expect+1: Unfinished character list in pattern "[-x1-3" of modifier ":M"
316 # expect+1: Unfinished character list in pattern "*[-x1-3" of modifier ":M"
325 # expect+1: Unfinished character list in pattern "[^-x1-3" of modifier ":M"
338 PATTERN= ${:U?[\\}
339 # expect+1: Unfinished character list in pattern "?[\" of modifier ":M"
340 .if ${WORDS:M${PATTERN}} != "\\\\ x\\"
347 # expect+1: Unfinished character range in pattern "[x-" of modifier ":M"
359 # expect+1: Unfinished character range in pattern "[^x-" of modifier ":M"
365 # expect+2: Unfinished character list in pattern "[" of modifier ":M"
380 # This 'M\' becomes an indirect modifier ':M' with the pattern '\'.
381 # The pattern '\' never matches.
386 # This 'M\:\' becomes an indirect modifier ':M' with the pattern ':\'.
387 # The pattern ':\' never matches.