Lines Matching refs:pcre_compile
454 pcre_compile() is passed to pcre16_exec().
783 if a pattern compiled with pcre_compile() is passed to pcre32_exec().
1580 pcre *pcre_compile(const char *pattern, int options,
1731 The functions pcre_compile(), pcre_compile2(), pcre_study(), and
1777 tables in the current locale for passing to pcre_compile(),
1842 argument of pcre_compile(), or it can be specified by special text at
2018 pcre *pcre_compile(const char *pattern, int options,
2027 Either of the functions pcre_compile() or pcre_compile2() can be called
2031 avoid too much repetition, we refer just to pcre_compile() below, but
2059 If errptr is NULL, pcre_compile() returns NULL immediately. Otherwise,
2060 if compilation of a pattern fails, pcre_compile() returns NULL, and
2076 If pcre_compile2() is used instead of pcre_compile(), and the error-
2095 re = pcre_compile(
2115 If this bit is set, pcre_compile() automatically inserts callout items,
2190 options passed to pcre_compile() or by a special sequence at the start
2385 found, pcre_compile() returns an error. If you already know that your
2568 re = pcre_compile("pattern", 0, &error, &erroroffset, NULL);
2570 re, /* result of pcre_compile() */
2628 argument of pcre_compile() is NULL. These are sufficient for many
2641 passed to pcre_compile() as often as necessary. For example, to build
2648 re = pcre_compile(..., tables);
2658 The pointer that is passed to pcre_compile() is saved with the compiled
2708 re, /* result of pcre_compile() */
2957 option bits are those specified in the call to pcre_compile(), modified
2989 by pcre_compile(). The value that is passed as the argument to
2990 pcre_malloc() when pcre_compile() is getting memory in which to place
3079 re, /* result of pcre_compile() */
3207 matically passed with the compiled pattern from pcre_compile() to
3260 tion of pcre_compile() above. During matching, the newline choice
4106 re, /* result of pcre_compile() */
4358 passing PCRE_NO_AUTO_POSSESS to pcre_compile(), or starting the pattern
4757 A number of options that can be passed to pcre_compile() can also be
5883 to pcre_compile(), some of the classes are changed so that Unicode
6920 On encountering the # character, pcre_compile() skips along, looking
8076 with UTF support, and, in addition, you must call pcre_compile() with
8154 Note that passing PCRE_NO_UTF8_CHECK to pcre_compile() just disables
8631 re = pcre_compile(pattern, 0, &error, &erroffset, NULL);
9221 re = pcre_compile("my pattern", 0, &error, &erroroffset, NULL);