Home
last modified time | relevance | path

Searched refs:PCRE_ANCHORED (Results 1 – 11 of 11) sorted by relevance

/PHP-7.1/ext/pcre/tests/
H A Dpcre_anchored.phpt2 A (PCRE_ANCHORED) modififer
/PHP-7.1/ext/pcre/pcrelib/
H A Dpcredemo.c308 options = PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED; in main()
H A Dpcre.h131 #define PCRE_ANCHORED 0x00000010 /* C4 E D */ macro
H A Dpcre_internal.h1115 (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \
1123 (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \
1128 (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \
H A Dpcre_study.c1504 if ((re->options & PCRE_ANCHORED) == 0 && in pcre_study()
H A Dpcre_compile.c9592 if ((re->options & PCRE_ANCHORED) == 0) in pcre_compile2()
9594 if (is_anchored(codestart, 0, cd, 0)) re->options |= PCRE_ANCHORED; in pcre_compile2()
9641 ((re->options & PCRE_ANCHORED) == 0 || (reqcharflags & REQ_VARY) != 0)) in pcre_compile2()
H A Dpcre_jit_compile.c10048 if ((re->options & PCRE_ANCHORED) == 0) in PRIV()
10167 if ((re->options & PCRE_ANCHORED) == 0 && (re->options & PCRE_FIRSTLINE) != 0) in PRIV()
10175 if ((re->options & PCRE_ANCHORED) == 0) in PRIV()
H A Dpcre_exec.c6543 anchored = ((re->options | options) & PCRE_ANCHORED) != 0; in pcre_exec()
H A DChangeLog4207 PCRE_ANCHORED and checking the length, in preparation for adding
5891 4. Make PCRE_ANCHORED public and accept as a compile option.
5893 5. Add an options word to pcre_exec() and accept PCRE_ANCHORED and
/PHP-7.1/ext/pcre/
H A Dphp_pcre.c463 case 'A': coptions |= PCRE_ANCHORED; break; in pcre_get_compiled_regex_cache()
1003 g_notempty = (offsets[1] == offsets[0])? PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED : 0; in php_pcre_match_impl()
1426 g_notempty = (offsets[1] == offsets[0])? PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED : 0; in php_pcre_replace_impl()
1919 g_notempty = (offsets[1] == offsets[0])? PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED : 0; in php_pcre_split_impl()
/PHP-7.1/ext/pcre/pcrelib/doc/
H A Dpcre.txt2066 PCRE_ANCHORED, PCRE_BSR_xxx, PCRE_NEWLINE_xxx, PCRE_NO_UTF8_CHECK, and
2116 PCRE_ANCHORED
2984 For such patterns, the PCRE_ANCHORED bit is set in the options returned
3236 The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_xxx,
3248 PCRE_ANCHORED
3250 The PCRE_ANCHORED option limits pcre_exec() to matching at the first
3251 matching position. If a pattern was compiled with PCRE_ANCHORED, or
3342 set with PCRE_NOTEMPTY_ATSTART and PCRE_ANCHORED, and then if that
3494 PCRE_NOTEMPTY_ATSTART and PCRE_ANCHORED options, and then if that
4131 zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEW-
[all …]

Completed in 181 milliseconds