Lines Matching refs:matches
26 # * matches 0 or more characters
27 # ? matches 1 character
28 # \x matches the character 'x'
32 # matches exactly the word 'e', twice.
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.
83 # [...] matches 1 character from the listed characters
84 # [^...] matches 1 character from the unlisted characters
85 # [a-z] matches 1 character from the range 'a' to 'z'
86 # [z-a] matches 1 character from the range 'a' to 'z'
98 # [] matches never
103 # a[]b matches never
108 # [^] matches exactly 1 arbitrary character
113 # a[^]b matches 'a', then exactly 1 arbitrary character, then 'b'
118 # [Nn0] matches exactly 1 character from the set 'N', 'n', '0'
123 # [a-c] matches exactly 1 character from the range 'a' to 'c'
128 # [c-a] matches the same as [a-c]
134 # matches a single character, except for 'a', 'b', 'c', '6' or
140 # [\] matches a single backslash; no escaping takes place in
166 # [-] Matches a single '-' since the '-' only becomes part of a
186 # * matches 0 or more characters
187 # ? matches 1 character
221 # \: matches a colon
226 # ${:U\:} matches a colon
290 # [ Incomplete empty character list, never matches.
297 # [^ Incomplete negated empty character list, matches any single
305 # [-x1-3 Incomplete character list, matches those elements that can be
313 # *[-x1-3 Incomplete character list after a wildcard, matches those
322 # Incomplete negated character list, matches any character
345 # range, matches only the 'x'.
353 # character range; matches each word that does not have an 'x'
356 # XXX: Even matches strings that are longer than a single
364 # [:] matches never since the ':' starts the next modifier
381 # The pattern '\' never matches.
387 # The pattern ':\' never matches.