Lines Matching refs:posix
130 PCRE2_SPTR posix = pattern; in convert_posix() local
168 c = *posix; in convert_posix()
170 GETCHARLENTEST(c, posix, clength); in convert_posix()
172 posix += clength; in convert_posix()
198 *posix == CHAR_RIGHT_SQUARE_BRACKET) in convert_posix()
202 posix++; in convert_posix()
219 memcpy(p, posix - clength, CU2BYTES(clength)); in convert_posix()
237 if (posix[0] == CHAR_LEFT_SQUARE_BRACKET && in convert_posix()
238 posix[1] == CHAR_COLON && in convert_posix()
239 (posix[2] == CHAR_LESS_THAN_SIGN || in convert_posix()
240 posix[2] == CHAR_GREATER_THAN_SIGN) && in convert_posix()
241 posix[3] == CHAR_COLON && in convert_posix()
242 posix[4] == CHAR_RIGHT_SQUARE_BRACKET && in convert_posix()
243 posix[5] == CHAR_RIGHT_SQUARE_BRACKET) in convert_posix()
246 memcpy(p, posix, CU2BYTES(6)); in convert_posix()
248 posix += 6; in convert_posix()
263 if (*posix == CHAR_CIRCUMFLEX_ACCENT) in convert_posix()
265 posix++; in convert_posix()
269 if (plength > 0 && *posix == CHAR_RIGHT_SQUARE_BRACKET) in convert_posix()
271 posix++; in convert_posix()
282 if (*posix < 127 && strchr(posix_meta_escapes, *posix) != NULL) in convert_posix()
284 if (isdigit(*posix)) PUTCHARS(STR_BACKSLASH); in convert_posix()
286 lastspecial = *p++ = *posix++; in convert_posix()
347 memcpy(p, posix - clength, CU2BYTES(clength)); in convert_posix()