Lines Matching refs:posix_class
3140 int posix_class; in parse_regex() local
3165 posix_class = check_posix_name(ptr, (int)(tempptr - ptr)); in parse_regex()
3166 if (posix_class < 0) in parse_regex()
3204 int ptype = posix_substitutes[2*posix_class]; in parse_regex()
3205 int pvalue = posix_substitutes[2*posix_class + 1]; in parse_regex()
3226 *parsed_pattern++ = posix_class; in parse_regex()
5263 int posix_class = *(++pptr); in compile_branch() local
5273 if ((options & PCRE2_CASELESS) != 0 && posix_class <= 2) in compile_branch()
5274 posix_class = 0; in compile_branch()
5282 if ((options & PCRE2_UCP) != 0) switch(posix_class) in compile_branch()
5289 ((posix_class == PC_GRAPH)? PT_PXGRAPH : in compile_branch()
5290 (posix_class == PC_PRINT)? PT_PXPRINT : PT_PXPUNCT); in compile_branch()
5326 posix_class *= 3; in compile_branch()
5330 memcpy(pbits, cbits + posix_class_maps[posix_class], in compile_branch()
5335 taboffset = posix_class_maps[posix_class + 1]; in compile_branch()
5336 tabopt = posix_class_maps[posix_class + 2]; in compile_branch()