Home
last modified time | relevance | path

Searched refs:IN_ASCII_CHAR_CLASS (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/regex/
H A Dregex.c807 case IN_ASCII_CHAR_CLASS: /* [.....] */ in test_string()
817 if ((int)*regexp == (int)IN_ASCII_CHAR_CLASS) { in test_string()
1227 case IN_ASCII_CHAR_CLASS|ZERO_OR_MORE: /* [.....]* */ in test_string()
1239 if ((int)*regexp == (int)(IN_ASCII_CHAR_CLASS|ZERO_OR_MORE)) { in test_string()
1258 case IN_ASCII_CHAR_CLASS|ONE_OR_MORE: /* [.....]+ */ in test_string()
1270 if ((int)*regexp == (int)(IN_ASCII_CHAR_CLASS|ONE_OR_MORE)) { in test_string()
1295 case IN_ASCII_CHAR_CLASS | COUNT: /* [.....]{max_count,min_count} */ in test_string()
1311 if ((int)*regexp == (int)(IN_ASCII_CHAR_CLASS|COUNT)) { in test_string()
H A Dregex.h52 #define IN_ASCII_CHAR_CLASS 80 macro
H A Dregcmp.c398 IN_ASCII_CHAR_CLASS; in regcmp()