Lines Matching refs:pattern

8972 pcre_compile(const char *pattern, int options, const char **errorptr,  in pcre_compile()  argument
8976 pcre16_compile(PCRE_SPTR16 pattern, int options, const char **errorptr, in pcre_compile()
8980 pcre32_compile(PCRE_SPTR32 pattern, int options, const char **errorptr, in pcre_compile()
8985 return pcre_compile2(pattern, options, NULL, errorptr, erroroffset, tables); in pcre_compile()
8987 return pcre16_compile2(pattern, options, NULL, errorptr, erroroffset, tables); in pcre_compile()
8989 return pcre32_compile2(pattern, options, NULL, errorptr, erroroffset, tables); in pcre_compile()
8996 pcre_compile2(const char *pattern, int options, int *errorcodeptr, in pcre_compile2() argument
9000 pcre16_compile2(PCRE_SPTR16 pattern, int options, int *errorcodeptr, in pcre_compile2()
9004 pcre32_compile2(PCRE_SPTR32 pattern, int options, int *errorcodeptr, in pcre_compile2()
9042 ptr = (const pcre_uchar *)pattern; in pcre_compile2()
9200 (errorcode = PRIV(valid_utf)((PCRE_PUCHAR)pattern, -1, erroroffset)) != 0) in pcre_compile2()
9289 print_puchar(stdout, (PCRE_PUCHAR)pattern); in pcre_compile2()
9314 cd->start_pattern = (const pcre_uchar *)pattern; in pcre_compile2()
9315 cd->end_pattern = (const pcre_uchar *)(pattern + STRLEN_UC((const pcre_uchar *)pattern)); in pcre_compile2()
9430 ptr = (const pcre_uchar *)pattern + skipatstart; in pcre_compile2()
9574 *erroroffset = (int)(ptr - (const pcre_uchar *)pattern); in pcre_compile2()
9715 *erroroffset = ptr - (pcre_uchar *)pattern; in pcre_compile2()