Home
last modified time | relevance | path

Searched refs:pattern (Results 151 – 175 of 195) sorted by relevance

12345678

/PHP-7.1/ext/fileinfo/
H A Dlibmagic.patch630 + /*zval pattern;
3204 for (i = 0; nv[i].pattern != NULL; i++)
3205 if (strcasestr(vbuf, nv[i].pattern) != NULL) {
3324 + zend_string *pattern;
3342 + zend_string_release(pattern);
3539 + ZVAL_NEW_STR(pattern, t);
3552 + zval pattern;
3575 + zval_ptr_dtor(&pattern);
3612 + zval_ptr_dtor(&pattern);
3639 + zval_ptr_dtor(&pattern);
[all …]
/PHP-7.1/ext/spl/tests/
H A Dbug55701.phpt7 // Some methods of GlobIterator do not throw a RuntimeException when the glob pattern doesn't match…
8 // Most methods of GlobIterator throw a RuntimeException when the glob pattern does't match any file
H A Dclass_implements_variation2.phpt104 // loop through each element of the array for pattern
H A Dclass_uses_variation2.phpt106 // loop through each element of the array for pattern
H A Dclass_implements_variation1.phpt104 // loop through each element of the array for pattern
H A Dclass_uses_variation1.phpt104 // loop through each element of the array for pattern
/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_compile.c8972 pcre_compile(const char *pattern, int options, const char **errorptr, in pcre_compile() argument
8996 pcre_compile2(const char *pattern, int options, int *errorcodeptr, in pcre_compile2() argument
9000 pcre16_compile2(PCRE_SPTR16 pattern, int options, int *errorcodeptr, in pcre_compile2()
9004 pcre32_compile2(PCRE_SPTR32 pattern, int options, int *errorcodeptr, in pcre_compile2()
9042 ptr = (const pcre_uchar *)pattern; in pcre_compile2()
9289 print_puchar(stdout, (PCRE_PUCHAR)pattern); in pcre_compile2()
9314 cd->start_pattern = (const pcre_uchar *)pattern; in pcre_compile2()
9315 cd->end_pattern = (const pcre_uchar *)(pattern + STRLEN_UC((const pcre_uchar *)pattern)); in pcre_compile2()
9430 ptr = (const pcre_uchar *)pattern + skipatstart; in pcre_compile2()
9574 *erroroffset = (int)(ptr - (const pcre_uchar *)pattern); in pcre_compile2()
[all …]
H A DLICENCE14 just-in-time compiler that can be used to optimize pattern matching. These
H A DREADME270 . By default, the sequence \R in a pattern matches any Unicode line ending
278 them in a pattern. You can increase this threshold by setting, for example,
285 pattern. This limits the amount of system stack that a pattern uses when it
292 when matching a pattern. If the limit is exceeded during a match, the match
312 . The default maximum compiled pattern size is around 64K. You can increase
315 parts of the compiled pattern. In the 16-bit library, --with-link-size=3 is
643 of PCRE from within MySQL, as an alternative to the built-in pattern matching.
/PHP-7.1/ext/pcre/pcrelib/testdata/
H A Dtestinput113 sizes don't go horribly wrong when something is changed. The pattern contents
H A Dtestinput14292 /-- Although this saved pattern was compiled with link-size=2, it does no harm
H A Dtestoutput2977 Failed: \ at end of pattern at offset 4
980 Failed: \ at end of pattern at offset 4
5618 Compiled pattern written to testsavedregex
5628 Compiled pattern written to testsavedregex
5645 Compiled pattern written to testsavedregex
5663 Compiled pattern written to testsavedregex
5680 Compiled pattern written to testsavedregex
5698 Compiled pattern written to testsavedregex
5717 Compiled pattern written to testsavedregex
5737 Compiled pattern written to testsavedregex
[all …]
H A Dtestoutput8990 Compiled pattern written to testsavedregex
993 Compiled pattern (byte-inverted) loaded from testsavedregex
6214 Compiled pattern written to testsavedregex
6216 Compiled pattern loaded from testsavedregex
6226 Compiled pattern written to testsavedregex
6228 Compiled pattern (byte-inverted) loaded from testsavedregex
6238 Compiled pattern written to testsavedregex
6241 Compiled pattern loaded from testsavedregex
6251 Compiled pattern written to testsavedregex
6254 Compiled pattern (byte-inverted) loaded from testsavedregex
H A Dtestoutput11-163 sizes don't go horribly wrong when something is changed. The pattern contents
H A Dtestoutput11-323 sizes don't go horribly wrong when something is changed. The pattern contents
H A Dtestoutput11-83 sizes don't go horribly wrong when something is changed. The pattern contents
/PHP-7.1/sapi/fpm/
H A Dphp-fpm.conf.in120 ; files from a glob(3) pattern. This directive can be used everywhere in the
/PHP-7.1/ext/fileinfo/libmagic/
H A Dfuncs.c59 extern public void convert_libmagic_pattern(zval *pattern, char *val, int len, int options);
/PHP-7.1/ext/mbstring/oniguruma/
H A Dregparse.c2823 env->pattern, env->pattern_end, in CC_ESC_WARN()
2837 (env)->pattern, (env)->pattern_end, in CLOSE_BRACKET_WITHOUT_ESC_WARN()
3726 if (*src > env->pattern) /* /].../ is allowed. */ in fetch_token()
4810 env->pattern, env->pattern_end, in set_quantifier()
4820 env->pattern, env->pattern_end, in set_quantifier()
5533 onig_parse_make_tree(Node** root, const UChar* pattern, const UChar* end, in onig_parse_make_tree() argument
5548 env->pattern = (UChar* )pattern; in onig_parse_make_tree()
5553 p = (UChar* )pattern; in onig_parse_make_tree()
H A Dregcomp.c5262 onig_compile(regex_t* reg, const UChar* pattern, const UChar* pattern_end, in onig_compile() argument
5279 print_enc_string(stderr, reg->enc, pattern, pattern_end); in onig_compile()
5283 init_size = (pattern_end - pattern) * 2; in onig_compile()
5300 r = onig_parse_make_tree(&root, pattern, pattern_end, reg, &scan_env); in onig_compile()
5451 onig_recompile(regex_t* reg, const UChar* pattern, const UChar* pattern_end, in onig_recompile() argument
5458 r = onig_new(&new_reg, pattern, pattern_end, option, enc, syntax, einfo); in onig_recompile()
5519 onig_new_without_alloc(regex_t* reg, const UChar* pattern, in onig_new_without_alloc() argument
5528 r = onig_compile(reg, pattern, pattern_end, einfo); in onig_new_without_alloc()
5533 onig_new(regex_t** reg, const UChar* pattern, const UChar* pattern_end, in onig_new() argument
5545 r = onig_compile(*reg, pattern, pattern_end, einfo); in onig_new()
H A DHISTORY376 2006/08/17: [bug] should check scan_env.num_call > 0 for backrefed pattern
879 too many alternatives pattern causes core dump.
1495 used in the pattern.
1603 2003/05/27: [spec] should not warn for right bracket at beginning of pattern.
1929 2002/04/04: [spec] should allow fixed length alternative and repeat pattern
1979 2002/03/12: [bug] if pattern has nested null-check, cause infinite loop.
2001 2002/03/06: [bug] if pattern has NULL(\000) char, infinite loop happens
2022 2002/02/28: [new] look-behind (?<=pattern), (?<!pattern).
H A Dregint.h791 extern int onig_compile P_((regex_t* reg, const UChar* pattern, const UChar* pattern_end, OnigErro…
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_last_insert_id.phpt79 // Sequence counter pattern...
/PHP-7.1/ext/standard/
H A Dfile.c2443 char *pattern, *filename; in PHP_FUNCTION() local
2447 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "pp|l", &pattern, &pattern_len, &filename, &filename_le… in PHP_FUNCTION()
2460 RETURN_BOOL( ! fnmatch( pattern, filename, (int)flags )); in PHP_FUNCTION()
/PHP-7.1/ext/imap/
H A Dphp_imap.c225 ZEND_ARG_INFO(0, pattern)
231 ZEND_ARG_INFO(0, pattern)
237 ZEND_ARG_INFO(0, pattern)
273 ZEND_ARG_INFO(0, pattern)
279 ZEND_ARG_INFO(0, pattern)

Completed in 171 milliseconds

12345678