Home
last modified time | relevance | path

Searched refs:erroroffset (Results 1 – 11 of 11) sorted by relevance

/external/pcre/dist/
Dpcre_valid_utf8.c107 PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset) in PRIV()
127 *erroroffset = (int)(p - string); in PRIV()
133 *erroroffset = (int)(p - string); in PRIV()
140 *erroroffset = (int)(p - string); /* Missing bytes */ in PRIV()
149 *erroroffset = (int)(p - string) - 1; in PRIV()
164 *erroroffset = (int)(p - string) - 1; in PRIV()
176 *erroroffset = (int)(p - string) - 2; in PRIV()
181 *erroroffset = (int)(p - string) - 2; in PRIV()
186 *erroroffset = (int)(p - string) - 2; in PRIV()
198 *erroroffset = (int)(p - string) - 2; in PRIV()
[all …]
Dpcre16_valid_utf16.c84 PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset) in PRIV()
109 *erroroffset = p - string; in PRIV()
116 *erroroffset = p - string; in PRIV()
123 *erroroffset = p - string; in PRIV()
131 (void)(erroroffset); in PRIV()
Dpcre32_valid_utf32.c82 PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset) in PRIV()
103 *erroroffset = p - string; in PRIV()
110 *erroroffset = p - string; in PRIV()
118 (void)(erroroffset); in PRIV()
Dpcregexp.pas338 var errorptr : PChar; var erroroffset : integer;
343 var errorptr : PChar; var erroroffset : integer;
Dpcre_compile.c8749 int *erroroffset, const unsigned char *tables) in pcre_compile() argument
8753 int *erroroffset, const unsigned char *tables) in pcre_compile()
8757 int *erroroffset, const unsigned char *tables) in pcre_compile()
8761 return pcre_compile2(pattern, options, NULL, errorptr, erroroffset, tables); in pcre_compile()
8763 return pcre16_compile2(pattern, options, NULL, errorptr, erroroffset, tables); in pcre_compile()
8765 return pcre32_compile2(pattern, options, NULL, errorptr, erroroffset, tables); in pcre_compile()
8773 const char **errorptr, int *erroroffset, const unsigned char *tables) in pcre_compile2() argument
8777 const char **errorptr, int *erroroffset, const unsigned char *tables) in pcre_compile2()
8781 const char **errorptr, int *erroroffset, const unsigned char *tables) in pcre_compile2()
8835 if (erroroffset == NULL) in pcre_compile2()
[all …]
Dpcre_jit_test.c825 int erroroffset; in tables() local
850 regex = pcre_compile(null_str, 0, &errorptr, &erroroffset, NULL); in tables()
856 regex = pcre16_compile(null_str, 0, &errorptr, &erroroffset, NULL); in tables()
862 regex = pcre32_compile(null_str, 0, &errorptr, &erroroffset, NULL); in tables()
Dpcre_dfa_exec.c3341 int erroroffset; in pcre_dfa_exec() local
3342 int errorcode = PRIV(valid_utf)((pcre_uchar *)subject, length, &erroroffset); in pcre_dfa_exec()
3347 offsets[0] = erroroffset; in pcre_dfa_exec()
Dpcretest.c3479 int erroroffset, len, delimiter, poffset; in main() local
4014 PCRE_COMPILE(re, p, options, &error, &erroroffset, tables); in main()
4023 PCRE_COMPILE(re, p, options, &error, &erroroffset, tables); in main()
4030 fprintf(outfile, "Failed: %s at offset %d\n", error, erroroffset); in main()
Dpcre_exec.c6431 int erroroffset; in pcre_exec() local
6432 int errorcode = PRIV(valid_utf)((PCRE_PUCHAR)subject, length, &erroroffset); in pcre_exec()
6437 offsets[0] = erroroffset; in pcre_exec()
DChangeLog2988 14. If erroroffset was passed as NULL to pcre_compile, it provoked a
/external/pcre/dist/doc/
Dpcre.txt2568 re = pcre_compile("pattern", 0, &error, &erroroffset, NULL);
9217 int erroroffset, rc, size;
9221 re = pcre_compile("my pattern", 0, &error, &erroroffset, NULL);