HomeSort by relevance Sort by last modified time
    Searched refs:pcre_exec (Results 1 - 21 of 21) sorted by null

  /external/pcre/
Android.mk 9 dist/pcre_exec.c \
pcre.h 104 only recognized at matching time (i.e. by pcre_exec() or pcre_dfa_exec()) may
122 Options that can be set for pcre_exec() and/or pcre_dfa_exec() are flagged with
372 /* The structure for passing additional data to pcre_exec(). This is defined in
573 PCRE_EXP_DECL int pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
  /external/pcre/dist/
pcredemo.c 121 rc = pcre_exec(
238 * would lead to an infinite loop. Instead, a special call of pcre_exec() *
313 rc = pcre_exec(
Makefile.am 34 doc/html/pcre_exec.html \
232 pcre_exec.c \
649 pcre_dfa_exec.o pcre_exec.o pcre_fullinfo.o pcre_get.o \
690 doc/pcre_exec.3 \
739 ln -sf pcre_exec.3 $(DESTDIR)$(man3dir)/pcre16_exec.3
765 ln -sf pcre_exec.3 $(DESTDIR)$(man3dir)/pcre32_exec.3
pcregexp.pas 262 { The structure for passing additional data to pcre_exec(). This is defined in
359 function pcre_exec( const argument_re : pointer {pcre}; function
362 function pcre_exec( const external_re : pointer;
520 MatchesCount:=pcre_exec( RegExpC, RegExpExt, AStr, ALen, PMatchArray(Matches)^[1],
522 MatchesCount:=pcre_exec( RegExpC, RegExpExt, AStr, ALen, 0,
543 MatchesCount:=pcre_exec( RegExpC, RegExpExt, AStr, ALen, AOfs,
pcreposix.c 376 rc = pcre_exec((const pcre *)preg->re_pcre, NULL, string + so, (eo - so),
pcregrep.c 958 if (pcre_exec(ep->compiled, NULL, path, plen, 0, 0, NULL, 0) >= 0)
966 if (pcre_exec(ip->compiled, NULL, path, plen, 0, 0, NULL, 0) >= 0)
    [all...]
pcre.h.generic 104 only recognized at matching time (i.e. by pcre_exec() or pcre_dfa_exec()) may
122 Options that can be set for pcre_exec() and/or pcre_dfa_exec() are flagged with
372 /* The structure for passing additional data to pcre_exec(). This is defined in
573 PCRE_EXP_DECL int pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
pcre.h.in 104 only recognized at matching time (i.e. by pcre_exec() or pcre_dfa_exec()) may
122 Options that can be set for pcre_exec() and/or pcre_dfa_exec() are flagged with
372 /* The structure for passing additional data to pcre_exec(). This is defined in
573 PCRE_EXP_DECL int pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
pcre_jit_test.c     [all...]
pcrecpp.cc 533 int rc = pcre_exec(re, // The regular expression object
550 // pcre_exec() returns 0 as a special case when the number of
pcretest.c 260 count = pcre_exec(re, extra, (char *)bptr, len, start_offset, options, \
605 #define PCRE_EXEC(count, re, extra, bptr, len, start_offset, options, \
823 #define PCRE_EXEC(count, re, extra, bptr, len, start_offset, options, \
826 G(PCRE_EXEC,BITONE)(count, re, extra, bptr, len, start_offset, options, \
829 G(PCRE_EXEC,BITTWO)(count, re, extra, bptr, len, start_offset, options, \
    [all...]
pcre_exec.c 40 /* This module contains pcre_exec(), the externally visible function that does
6347 pcre_exec(const pcre *argument_re, const pcre_extra *extra_data, function
    [all...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
regex-dna.c 94 pcre_exec(re, re_ex, src->buf, src->len, pos, 0, m, 3) >= 0;
119 pcre_exec(re, re_ex, src->buf, src->len, pos, 0, m, 3) >= 0;
  /prebuilts/go/linux-x86/test/bench/shootout/
regex-dna.c 94 pcre_exec(re, re_ex, src->buf, src->len, pos, 0, m, 3) >= 0;
119 pcre_exec(re, re_ex, src->buf, src->len, pos, 0, m, 3) >= 0;
  /external/regex-re2/util/
pcre.h 184 #define pcre_exec(a, b, c, d, e, f, g, h) ({ (void)(a); (void)(b); (void)(c); (void)(d); (void)(e); (void)(f); (void)(g); (void)(h); 0; })
pcre.cc 495 int rc = pcre_exec(re, // The regular expression object
506 // pcre_exec() returns 0 as a special case when the number of
    [all...]
  /external/selinux/policycoreutils/mcstrans/src/
mcstrans.c 1123 int rc = pcre_exec(domain->base_classification_regexp, 0, work, work_len, 0, PCRE_ANCHORED, ovector, OVECCOUNT);
1166 int rc = pcre_exec(g->prefix_regexp, 0, work, work_len, 0, 0, ovector, OVECCOUNT);
1174 int rc = pcre_exec(g->suffix_regexp, 0, work, work_len, 0, 0, ovector, OVECCOUNT);
1189 int rc = pcre_exec(g->word_regexp, 0, s, l, 0, 0, ovector, OVECCOUNT);
    [all...]
  /external/libselinux/src/
label_file.c 658 rc = pcre_exec(spec->regex,
663 rc = pcre_exec(spec->regex,
  /external/selinux/libselinux/src/
label_file.c 695 rc = pcre_exec(spec->regex,
700 rc = pcre_exec(spec->regex,
  /system/sepolicy/tools/
check_seapp.c 323 int ret = pcre_exec(assert->regex.compiled, assert->regex.extra, tomatch,
326 /* 0 from pcre_exec means matched */

Completed in 526 milliseconds