Searched refs:erroroffset (Results 1 - 9 of 9) sorted by relevance

/external/pcre/dist/
H A Dpcre_valid_utf8.c107 PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset) argument
127 *erroroffset = (int)(p - string);
133 *erroroffset = (int)(p - string);
140 *erroroffset = (int)(p - string); /* Missing bytes */
149 *erroroffset = (int)(p - string) - 1;
164 *erroroffset = (int)(p - string) - 1;
176 *erroroffset = (int)(p - string) - 2;
181 *erroroffset = (int)(p - string) - 2;
186 *erroroffset = (int)(p - string) - 2;
198 *erroroffset
[all...]
H A Dpcre16_valid_utf16.c84 PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset) argument
109 *erroroffset = p - string;
116 *erroroffset = p - string;
123 *erroroffset = p - string;
131 (void)(erroroffset);
H A Dpcre32_valid_utf32.c82 PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset) argument
103 *erroroffset = p - string;
110 *erroroffset = p - string;
118 (void)(erroroffset);
H A Dpcre_jit_test.c825 int erroroffset; local
850 regex = pcre_compile(null_str, 0, &errorptr, &erroroffset, NULL);
856 regex = pcre16_compile(null_str, 0, &errorptr, &erroroffset, NULL);
862 regex = pcre32_compile(null_str, 0, &errorptr, &erroroffset, NULL);
H A Dpcre_compile.c8739 erroroffset ptr offset in pattern where error was detected
8743 with errorptr and erroroffset set
8749 int *erroroffset, const unsigned char *tables)
8753 int *erroroffset, const unsigned char *tables)
8757 int *erroroffset, const unsigned char *tables)
8761 return pcre_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8763 return pcre16_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8765 return pcre32_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8773 const char **errorptr, int *erroroffset, const unsigned char *tables)
8777 const char **errorptr, int *erroroffset, cons
8748 pcre_compile(const char *pattern, int options, const char **errorptr, int *erroroffset, const unsigned char *tables) argument
8772 pcre_compile2(const char *pattern, int options, int *errorcodeptr, const char **errorptr, int *erroroffset, const unsigned char *tables) argument
[all...]
H A Dpcregexp.pas46 13-11-04 - removed the ErrorPos = 0 check -> always print erroroffset
338 var errorptr : PChar; var erroroffset : integer;
343 var errorptr : PChar; var erroroffset : integer;
H A Dpcre_dfa_exec.c3341 int erroroffset; local
3342 int errorcode = PRIV(valid_utf)((pcre_uchar *)subject, length, &erroroffset);
3347 offsets[0] = erroroffset;
H A Dpcretest.c3479 int erroroffset, len, delimiter, poffset; local
4014 PCRE_COMPILE(re, p, options, &error, &erroroffset, tables);
4023 PCRE_COMPILE(re, p, options, &error, &erroroffset, tables);
4030 fprintf(outfile, "Failed: %s at offset %d\n", error, erroroffset);
H A Dpcre_exec.c6431 int erroroffset; local
6432 int errorcode = PRIV(valid_utf)((PCRE_PUCHAR)subject, length, &erroroffset);
6437 offsets[0] = erroroffset;

Completed in 134 milliseconds