Lines Matching full:character
23 // '?' matches any single non-/ character
24 // '[' [ '^' ] { character-range } ']'
25 // character class (must be non-empty)
26 // c matches character c (c != '*', '?', '\\', '[')
27 // '\\' c matches character c
29 // character-range:
30 // c matches character c (c != '\\', '-', ']')
31 // '\\' c matches character c
32 // lo '-' hi matches character c for lo <= c <= hi
115 // Chunk is all single-character operators: literals, char classes, and ?.
123 // character class
187 // getEsc gets a possibly-escaped character from chunk, for a character class.