/external/pcre/dist/ |
D | pcre_valid_utf8.c | 107 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 …]
|
D | pcre16_valid_utf16.c | 84 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()
|
D | pcre32_valid_utf32.c | 82 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()
|
D | pcregexp.pas | 338 var errorptr : PChar; var erroroffset : integer; 343 var errorptr : PChar; var erroroffset : integer;
|
D | pcre_compile.c | 8749 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 …]
|
D | pcre_jit_test.c | 825 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()
|
D | pcre_dfa_exec.c | 3341 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()
|
D | pcretest.c | 3479 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()
|
D | pcre_exec.c | 6431 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()
|
D | ChangeLog | 2988 14. If erroroffset was passed as NULL to pcre_compile, it provoked a
|
/external/pcre/dist/doc/ |
D | pcre.txt | 2568 re = pcre_compile("pattern", 0, &error, &erroroffset, NULL); 9217 int erroroffset, rc, size; 9221 re = pcre_compile("my pattern", 0, &error, &erroroffset, NULL);
|