Home
last modified time | relevance | path

Searched refs:needle (Results 101 – 108 of 108) sorted by relevance

12345

/php-src/Zend/
H A Dzend_operators.c3664 static zend_always_inline void zend_memnstr_ex_pre(unsigned int td[], const char *needle, size_t ne… argument
3673 td[(unsigned char)needle[i]] = i + 1;
3679 td[(unsigned char)needle[i]] = (int)needle_len - i;
3685 ZEND_API const char* ZEND_FASTCALL zend_memnstr_ex(const char *haystack, const char *needle, size_t… argument
3695 zend_memnstr_ex_pre(td, needle, needle_len, 0);
3702 if (needle[i] != p[i]) {
3719 ZEND_API const char* ZEND_FASTCALL zend_memnrstr_ex(const char *haystack, const char *needle, size_… argument
3729 zend_memnstr_ex_pre(td, needle, needle_len, 1);
3736 if (needle[i] != p[i]) {
H A Dzend_compile.c4515 znode subject, needle; in zend_compile_func_array_key_exists() local
4521 zend_compile_expr(&needle, args->child[0]); in zend_compile_func_array_key_exists()
4524 zend_emit_op_tmp(result, ZEND_ARRAY_KEY_EXISTS, &needle, &subject); in zend_compile_func_array_key_exists()
/php-src/ext/intl/tests/
H A Dgrapheme_out_of_bounds.phpt123 // Empty needle + out of bounds
/php-src/ext/standard/
H A Dbasic_functions_arginfo.h150 ZEND_ARG_TYPE_INFO(0, needle, IS_MIXED, 0)
156 ZEND_ARG_TYPE_INFO(0, needle, IS_MIXED, 0)
902 ZEND_ARG_TYPE_INFO(0, needle, IS_STRING, 0)
912 ZEND_ARG_TYPE_INFO(0, needle, IS_STRING, 0)
926 ZEND_ARG_TYPE_INFO(0, needle, IS_STRING, 0)
1056 ZEND_ARG_TYPE_INFO(0, needle, IS_STRING, 0)
1096 ZEND_ARG_TYPE_INFO(0, needle, IS_STRING, 0)
/php-src/ext/intl/
H A Dphp_intl_arginfo.h463 ZEND_ARG_TYPE_INFO(0, needle, IS_STRING, 0)
481 ZEND_ARG_TYPE_INFO(0, needle, IS_STRING, 0)
/php-src/sapi/cli/
H A Dphp_cli_server.c307 http_response_status_code_pair needle = {code, NULL}, in get_status_string() local
310 result = bsearch(&needle, http_status_map, http_status_map_len, sizeof(needle), status_comp); in get_status_string()
/php-src/docs/source/miscellaneous/
H A Dstubs.rst642 function in_array(mixed $needle, array $haystack, bool $strict = false): bool {}
/php-src/sapi/fpm/tests/
H A Dtester.inc577 * Run until needle is found in the log.

Completed in 103 milliseconds

12345