Home
last modified time | relevance | path

Searched refs:re (Results 176 – 200 of 236) sorted by relevance

12345678910

/php-src/ext/standard/tests/strings/
H A Dstr_split_variation5.phpt154 string(10) "re it'll w"
H A Dhtmlentities24.phpt20 /* giving long string to check for proper memory re-allocation */
H A Dhtmlspecialchars.phpt16 /* giving long string to check for proper memory re-allocation */
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c396 pcre2_real_code *re; member
14151 const sljit_u8 *tables = re->tables; in jit_compile()
14152 void *allocator_data = &re->memctl; in jit_compile()
14183 common->re = re; in jit_compile()
14185 rootbacktrack.cc = common->name_table + re->name_count * re->name_entry_size; in jit_compile()
14197 common->might_be_empty = (re->minlength == 0) || (re->flags & PCRE2_MATCH_EMPTY); in jit_compile()
14198 common->allow_empty_partial = (re->max_lookbehind > 0) || (re->flags & PCRE2_MATCH_EMPTY); in jit_compile()
14200 switch(re->newline_convention) in jit_compile()
14435 … search_requested_char(common, (PCRE2_UCHAR)(re->last_codeunit), (re->flags & PCRE2_LASTCASELESS) … in jit_compile()
14794 if (re->executable_jit != NULL) in jit_compile()
[all …]
/php-src/win32/build/
H A Dmkdist.php99 foreach ($no_dist_re as $re) {
100 if (preg_match(",$re,", basename($dep)) > 0) {
/php-src/ext/standard/tests/file/
H A Dfgetcsv_variation21.phpt35 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation14.phpt33 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation20.phpt35 // close the file if the mode to be used is read mode and re-open using read mode
H A Dfgetcsv_variation13.phpt33 // close the file if the mode to be used is read mode and re-open using read mode
/php-src/ext/standard/tests/array/
H A Darray_merge.phpt65 /* associative array with string keys, which will not be re-indexed */
68 /* associative array with numeric keys, which will be re-indexed */
/php-src/
H A DCODING_STANDARDS.md51 1. NEVER USE `strncat()`. If you're absolutely sure you know what you're doing,
57 macros it gives a better understanding on what kind of macro you're calling.
/php-src/docs/source/core/data-structures/
H A Dzend_string.rst55 When you're done using the string, you must call ``zend_string_release``, or the memory will leak.
192 if you're using php-fpm with 8 workers, all workers will share the same interned strings buffer. It
H A Dreference-counting.rst63 where we're not dealing with a ``zval`` directly. It also stores some additional fields, described
/php-src/ext/fileinfo/libmagic/
H A Dcompress.c1061 ssize_t r, re; in uncompressbuf() local
1186 if ((re = sread(fdp[STDERR_FILENO][0], *newch, bytes_max, 0)) > 0) { in uncompressbuf()
1192 if (re == 0) in uncompressbuf()
H A Dsoftmagic.c503 pcre2_code *re = php_pcre_pce_re(pce); in check_fmt() local
504 pcre2_match_data *match_data = php_pcre_create_match_data(0, re); in check_fmt()
506 rv = pcre2_match(re, (PCRE2_SPTR)fmt, strlen(fmt), 0, 0, match_data, php_pcre_mctx()) > 0; in check_fmt()
/php-src/ext/ldap/
H A Dconfig.m418 AC_MSG_CHECKING([if we're at 64-bit platform])
/php-src/build/
H A Dax_func_which_gethostbyname_r.m484 # assuming an implicit prototype. In which case, we're out of luck.
/php-src/ext/pdo_mysql/tests/inc/
H A Dmysql_pdo_test.inc95 We're a bit in trouble: PDO_MYSQL returns version strings.
/php-src/ext/opcache/jit/
H A DREADME.md62 # As well as anything else from .github/actions/apt-x32/action.yml that you're testing locally
/php-src/ext/pcre/tests/
H A Dpreg_match_error4.phpt6 $re = '{^(\\s*\\{\\s*(?:"(?:[^\\0-\\x09\\x0a-\\x1f\\\\"]+|\\\\["bfnrt/\\\\]|\\\\u[a-fA-F0-9]{4})*"\…
907 $count = preg_match($re, $str, $matches);
/php-src/ext/zip/
H A Dphp_zip.c756 pcre2_code *re = NULL; in php_zip_pcre() local
761 re = pcre_get_compiled_regex(regexp, &capture_count); in php_zip_pcre()
762 if (!re) { in php_zip_pcre()
788 match_data = php_pcre_create_match_data(capture_count, re); in php_zip_pcre()
794 …rc = pcre2_match(re, (PCRE2_SPTR)ZSTR_VAL(namelist[i]), ZSTR_LEN(namelist[i]), 0, 0, match_data, m… in php_zip_pcre()
/php-src/sapi/fpm/tests/
H A Dlogtool.inc454 $this->expectNotice('error log file re-opened') &&
455 $this->expectNotice('access log file re-opened')
/php-src/docs-old/
H A Dparameter-parsing-api.md137 If you're in doubt, use check_parameters.php script to the parameters and their
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct.phpt233 …printf("[030] You're trying to run the tests with charset '%s' which seems not supported by the se…
/php-src/ext/spl/
H A Dspl_iterators.c1769 pcre2_code *re; in PHP_METHOD() local
1798 re = php_pcre_pce_re(intern->u.regex.pce); in PHP_METHOD()
1799 match_data = php_pcre_create_match_data(0, re); in PHP_METHOD()
1803 …rc = pcre2_match(re, (PCRE2_SPTR)ZSTR_VAL(subject), ZSTR_LEN(subject), 0, 0, match_data, php_pcre_… in PHP_METHOD()

Completed in 94 milliseconds

12345678910