HomeSort by relevance Sort by last modified time
    Searched full:erroffset (Results 1 - 19 of 19) sorted by null

  /external/pcre/dist/doc/
pcre_compile.3 
pcre_compile2.3 
pcredemo.3 71 int erroffset;
120 &erroffset, /* for error offset */
127 printf("PCRE compilation failed at offset %d: %s\en", erroffset, error);
pcre16.3 
pcre32.3 
pcreapi.3 587 int erroffset;
592 &erroffset, /* for error offset */
    [all...]
pcrejit.3 367 re = pcre_compile(pattern, 0, &error, &erroffset, NULL);
pcre.txt 200 const char **errptr, int *erroffset,
205 const char **errptr, int *erroffset,
532 const char **errptr, int *erroffset,
    [all...]
  /external/pcre/dist/doc/html/
pcre_compile.html 23 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
28 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
33 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
48 <i>erroffset</i> Offset in pattern where error was found
pcre_compile2.html 24 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
30 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
36 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
52 <i>erroffset</i> Offset in pattern where error was found
pcredemo.html 71 int erroffset;
120 &amp;erroffset, /* for error offset */
127 printf("PCRE compilation failed at offset %d: %s\n", erroffset, error);
pcre16.html 45 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
51 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
pcreapi.html 49 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
55 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
535 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
541 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
587 the variable pointed to by <i>erroffset</i>, which must not be NULL (if it is,
617 int erroffset;
622 &erroffset, /* for error offset */
    [all...]
pcre32.html 45 <b> const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
pcrejit.html 388 re = pcre_compile(pattern, 0, &error, &erroffset, NULL);
  /external/pcre/dist/
pcreposix.c 92 REG_INVARG, /* erroffset passed as NULL */
271 int erroffset; local
285 &erroffset, NULL);
286 preg->re_erroffset = erroffset;
pcredemo.c 54 int erroffset; local
103 &erroffset, /* for error offset */
110 printf("PCRE compilation failed at offset %d: %s\n", erroffset, error);
pcretest.c 242 #define PCRE_COMPILE8(re, pat, options, error, erroffset, tables) \
243 re = pcre_compile((char *)pat, options, error, erroffset, tables)
330 #define PCRE_COMPILE16(re, pat, options, error, erroffset, tables) \
331 re = (pcre *)pcre16_compile((PCRE_SPTR16)pat, options, error, erroffset, \
422 #define PCRE_COMPILE32(re, pat, options, error, erroffset, tables) \
423 re = (pcre *)pcre32_compile((PCRE_SPTR32)pat, options, error, erroffset, \
563 #define PCRE_COMPILE(re, pat, options, error, erroffset, tables) \
565 PCRE_COMPILE32(re, pat, options, error, erroffset, tables); \
567 PCRE_COMPILE16(re, pat, options, error, erroffset, tables); \
569 PCRE_COMPILE8(re, pat, options, error, erroffset, tables
    [all...]
pcre_compile.c 468 "erroffset passed as NULL\0"
    [all...]

Completed in 829 milliseconds