Home | History | Annotate | Download | only in html

Lines Matching full:pcre_compile

48 <b>pcre *pcre_compile(const char *<i>pattern</i>, int <i>options</i>,</b>
232 The functions <b>pcre_compile()</b>, <b>pcre_compile2()</b>, <b>pcre_study()</b>,
286 in the current locale for passing to <b>pcre_compile()</b>, <b>pcre_exec()</b>,
359 argument of <b>pcre_compile()</b>, or it can be specified by special text at the
534 <b>pcre *pcre_compile(const char *<i>pattern</i>, int <i>options</i>,</b>
545 Either of the functions <b>pcre_compile()</b> or <b>pcre_compile2()</b> can be
549 too much repetition, we refer just to <b>pcre_compile()</b> below, but the
581 If <i>errptr</i> is NULL, <b>pcre_compile()</b> returns NULL immediately.
582 Otherwise, if compilation of a pattern fails, <b>pcre_compile()</b> returns
598 If <b>pcre_compile2()</b> is used instead of <b>pcre_compile()</b>, and the
613 This code fragment shows a typical straightforward call to <b>pcre_compile()</b>:
618 re = pcre_compile(
638 If this bit is set, <b>pcre_compile()</b> automatically inserts callout items,
716 passed to <b>pcre_compile()</b> or by a special sequence at the start of the
921 page. If an invalid UTF-8 sequence is found, <b>pcre_compile()</b> returns an
1112 re = pcre_compile("pattern", 0, &error, &erroroffset, NULL);
1114 re, /* result of pcre_compile() */
1174 of <b>pcre_compile()</b> is NULL. These are sufficient for many applications.
1188 to <b>pcre_compile()</b> as often as necessary. For example, to build and use
1195 re = pcre_compile(..., tables);
1207 The pointer that is passed to <b>pcre_compile()</b> is saved with the compiled
1259 re, /* result of pcre_compile() */
1514 are those specified in the call to <b>pcre_compile()</b>, modified by any
1544 <b>pcre_compile()</b>. The value that is passed as the argument to
1545 <b>pcre_malloc()</b> when <b>pcre_compile()</b> is getting memory in which to
1644 re, /* result of pcre_compile() */
1790 with the compiled pattern from <b>pcre_compile()</b> to <b>pcre_exec()</b>.
1848 <b>pcre_compile()</b> above. During matching, the newline choice affects the
2745 re, /* result of pcre_compile() */