Home
last modified time | relevance | path

Searched refs:pcre_study (Results 1 – 25 of 25) sorted by relevance

/external/pcre/dist/
Dmakevp_l.txt16 +pcre_study.obj &
Dmakevp_c.txt16 pcre_study.c
DMakefile.am50 doc/html/pcre_study.html \
243 pcre_study.c \
652 pcre_study.o pcre_tables.o pcre_ucd.o \
706 doc/pcre_study.3 \
755 ln -sf pcre_study.3 $(DESTDIR)$(man3dir)/pcre16_study.3
781 ln -sf pcre_study.3 $(DESTDIR)$(man3dir)/pcre32_study.3
Dpcre.h.in101 that pcre_study() has its own set of options. Originally, all the options
303 /* Request types for pcre_study(). Do not re-arrange, in order to remain
378 void *study_data; /* Opaque data from pcre_study() */
391 void *study_data; /* Opaque data from pcre_study() */
404 void *study_data; /* Opaque data from pcre_study() */
633 PCRE_EXP_DECL pcre_extra *pcre_study(const pcre *, int, const char **);
Dpcre.h.generic101 that pcre_study() has its own set of options. Originally, all the options
303 /* Request types for pcre_study(). Do not re-arrange, in order to remain
378 void *study_data; /* Opaque data from pcre_study() */
391 void *study_data; /* Opaque data from pcre_study() */
404 void *study_data; /* Opaque data from pcre_study() */
633 PCRE_EXP_DECL pcre_extra *pcre_study(const pcre *, int, const char **);
Dpcregexp.pas413 function pcre_study( const external_re : pointer {pcre}; in pcre_study() function
494 RegExpExt := pcre_study( RegExpC, 0, ErrorMsg );
DMakefile.in221 pcre_refcount.c pcre_string_utils.c pcre_study.c pcre_tables.c \
239 @WITH_PCRE8_TRUE@ libpcre_la-pcre_study.lo \
948 doc/html/pcre_study.html \
1091 @WITH_PCRE8_TRUE@ pcre_study.c \
1220 pcre_study.o pcre_tables.o pcre_ucd.o \
1259 doc/pcre_study.3 \
1621 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_study.Plo@am__quote@
1760 libpcre_la-pcre_study.lo: pcre_study.c
1761 …a-pcre_study.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_study.Tpo -c -o libpcre_la-pcre_study.lo `te…
1762 …depCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_study.Tpo $(DEPDIR)/libpcre_la-pcre_stud…
[all …]
DPrepareRelease227 pcre_study.c \
DChangeLog910 41. There were two incorrect #ifdefs in pcre_study.c, meaning that, in 16-bit
1274 13. Be more explicit in pcre_study() instead of relying on "default" for
1276 ones are added and accidentally left out of pcre_study(), testing should
1284 study enabled, and thereby test pcre_study() more easily. All the standard
1450 48. For a pattern such as /\babc|\bdef/ pcre_study() was failing to set up the
1668 13. pcre_study() now recognizes \h, \v, and \R when constructing a bit map of
1695 caused a problem in UTF-8 mode when pcre_study() was used to create a list
1782 particular, this includes all (*DEFINE) patterns), a call to pcre_study()
1820 (c) In pcre_study(), rename the function set_bit() as set_table_bit(), to
2042 on.) This code has now been added to pcre_study(); it finds a lower bound
[all …]
Dpcre_study.c1410 pcre_study(const pcre *external_re, int options, const char **errorptr) in pcre_study() function
DREADME678 run forces pcre_study() to be called for all patterns except for a few in some
681 this time with a forced pcre_study() with the PCRE_STUDY_JIT_COMPILE option.
710 The second set of tests check pcre_fullinfo(), pcre_study(),
Dpcre_jit_test.c1223 extra8 = pcre_study(re8, study_mode, &error); in regression_tests()
DCMakeLists.txt468 pcre_study.c
Dpcregrep.c3138 cp->hint = pcre_study(cp->compiled, study_options, &error); in main()
DNON-AUTOTOOLS-BUILD125 pcre_study.c
Dpcretest.c293 extra = pcre_study(re, options, error)
/external/pcre/
DAndroid.mk19 dist/pcre_study.c \
Dpcre.h633 PCRE_EXP_DECL pcre_extra *pcre_study(const pcre *, int, const char **);
/external/selinux/libselinux/utils/
Dsefcontext_compile.c110 sd = pcre_study(re, 0, &err); in process_file()
/external/libselinux/src/
Dlabel_file.c267 spec->sd = pcre_study(spec->regex, 0, &tmperrbuf); in compile_regex()
/external/selinux/libselinux/src/
Dlabel_file.c140 spec->sd = pcre_study(spec->regex, 0, &tmperrbuf); in compile_regex()
/external/pcre/dist/doc/
Dpcre.txt319 pcre16_study(), not pcre_study(), and you must free the study data with
650 must do so with pcre32_study(), not pcre_study(), and you must free the
1589 pcre_extra *pcre_study(const pcre *code, int options,
1731 The functions pcre_compile(), pcre_compile2(), pcre_study(), and
2502 pcre_extra *pcre_study(const pcre *code, int options,
2507 matching. The function pcre_study() takes a pointer to a compiled pat-
2509 information that will help speed up matching, pcre_study() returns a
2513 The returned value from pcre_study() can be passed directly to
2519 pcre_study() returns NULL by default. In that circumstance, if the
2522 pcre_study() is called with the PCRE_STUDY_EXTRA_NEEDED option, it
[all …]
/external/pcre/dist/doc/html/
DREADME.txt678 run forces pcre_study() to be called for all patterns except for a few in some
681 this time with a forced pcre_study() with the PCRE_STUDY_JIT_COMPILE option.
710 The second set of tests check pcre_fullinfo(), pcre_study(),
DNON-AUTOTOOLS-BUILD.txt125 pcre_study.c
/external/selinux/libselinux/
DChangeLog12 * pcre_study can return NULL without error, from Stephen Smalley.