Home
last modified time | relevance | path

Searched refs:pair (Results 1 – 25 of 28) sorted by relevance

12

/PHP-8.0/ext/intl/tests/
H A Dbug74230.phpt10 $pair = $high.$low;
14 @\iconv('UTF-8', 'UTF-8', $pair) === false
/PHP-8.0/ext/standard/tests/array/
H A Darray_change_key_case_variation.phpt17 /* should return one value key pair with key being in lowercase */
20 /* should return one value key pair with key being in uppercase */
H A Darray_diff_assoc_variation8.phpt15 $array_assoc = array ('2' => 'c', //same key=>value pair, different order
H A Darray_diff_variation6.phpt15 $array_assoc = array ('2' => 'c', //same key=>value pair, different order
/PHP-8.0/ext/iconv/tests/
H A Diconv_mime_decode_headers.phpt11 Received: from pb1.pair.com (pb1.pair.com [16.92.131.4]) by ***.example.com
45 …string(259) "from pb1.pair.com (pb1.pair.com [16.92.131.4]) by ***.example.com (8.12.10/8.12.10/19…
/PHP-8.0/ext/mbstring/tests/
H A Dzend_multibyte-05.phpt12 // back to UTF-8. There should be only a pair of consecutive bytes that is
H A Dzend_multibyte-09.phpt13 // back to UTF-8. There should be only a pair of consecutive bytes that is
/PHP-8.0/ext/pcntl/
H A Dpcntl.c789 char **current_arg, **pair; in PHP_FUNCTION() local
833 pair = envp = safe_emalloc((envc + 1), sizeof(char *), 0); in PHP_FUNCTION()
851 *pair = safe_emalloc(Z_STRLEN_P(element) + 1, sizeof(char), ZSTR_LEN(key) + 1); in PHP_FUNCTION()
853 strlcpy(*pair, ZSTR_VAL(key), ZSTR_LEN(key) + 1); in PHP_FUNCTION()
854 strlcat(*pair, "=", pair_length); in PHP_FUNCTION()
855 strlcat(*pair, Z_STRVAL_P(element), pair_length); in PHP_FUNCTION()
860 pair++; in PHP_FUNCTION()
862 *(pair) = NULL; in PHP_FUNCTION()
870 for (pair = envp; *pair != NULL; pair++) efree(*pair); in PHP_FUNCTION()
/PHP-8.0/ext/sockets/
H A Dsockets.stub.php80 /** @param array $pair */
81 function socket_create_pair(int $domain, int $type, int $protocol, &$pair): bool {} argument
H A Dsockets_arginfo.h132 ZEND_ARG_INFO(1, pair)
/PHP-8.0/ext/sockets/tests/
H A Dsocket_create_pair-wrongparams.phpt30 Warning: socket_create_pair(): Unable to create socket pair [%d]: %s not supported in %s on line %d
/PHP-8.0/ext/standard/tests/strings/
H A Dstrtr_variation4.phpt7 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
H A Dstrtr_variation1.phpt7 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
H A Dstrtr_variation2.phpt7 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
H A Dstrtr_variation3.phpt7 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
/PHP-8.0/Zend/
H A Dzend_weakrefs.c429 zval pair; in zend_weakmap_get_properties_for() local
431 array_init(&pair); in zend_weakmap_get_properties_for()
434 add_assoc_zval(&pair, "key", &obj_zv); in zend_weakmap_get_properties_for()
436 add_assoc_zval(&pair, "value", val); in zend_weakmap_get_properties_for()
438 zend_hash_next_index_insert(ht, &pair); in zend_weakmap_get_properties_for()
/PHP-8.0/main/
H A Drfc1867.c798 char *pair = NULL; local
810 while (*cd && (pair = getword(mbuff->input_encoding, &cd, ';')))
812 char *key = NULL, *word = pair;
818 if (strchr(pair, '=')) {
819 key = getword(mbuff->input_encoding, &pair, '=');
825 param = getword_conf(mbuff->input_encoding, pair);
838 filename = getword_conf(mbuff->input_encoding, pair);
/PHP-8.0/ext/pcre/tests/
H A Dbug76514.phpt490 (?<pair> \s* (?&string) \s* : (?&json) \s* )
491 (?<object> \{ (?: (?&pair) (?: , (?&pair) )* )? \s* \} )
/PHP-8.0/ext/standard/
H A Dstreamsfuncs.c55 php_socket_t pair[2]; in PHP_FUNCTION() local
63 if (0 != socketpair((int)domain, (int)type, (int)protocol, pair)) { in PHP_FUNCTION()
70 s1 = php_stream_sock_open_from_socket(pair[0], 0); in PHP_FUNCTION()
72 close(pair[0]); in PHP_FUNCTION()
73 close(pair[1]); in PHP_FUNCTION()
77 s2 = php_stream_sock_open_from_socket(pair[1], 0); in PHP_FUNCTION()
80 close(pair[1]); in PHP_FUNCTION()
H A Dproc_open.c429 # define pipe(pair) (CreatePipe(&pair[0], &pair[1], &php_proc_open_security, 0) ? 0 : -1) argument
/PHP-8.0/build/
H A Dphp_cxx_compile_stdcxx.m4800 struct pair
802 pair (T1 p1, T2 p2)
813 [[maybe_unused]] auto p = pair{13, 42u};
834 std::pair<int, int> pr = { 1, 2 };
841 auto f2() -> std::pair<int, int>&
/PHP-8.0/ext/openssl/tests/
H A Decc.phpt44 // openssl_csr_new creates a new public key pair if the key argument is null
/PHP-8.0/ext/phar/tests/
H A Dcreate_path_error.phpt37 "Font\xF0\x80\x90\x90pro.ttf", //Invalid multi-byte character - surrogate pair code point
/PHP-8.0/ext/standard/tests/file/
H A Dfile.inc228 An array with following key value pair:
345 An array with following key value pair:
457 Returns: An array with following key/value pair
501 Returns: An array with following key/value pair
/PHP-8.0/sapi/cli/
H A Dphp_cli_server.c2251 const php_cli_server_ext_mime_type_pair *pair; in php_cli_server_mime_type_ctor() local
2255 for (pair = mime_type_map; pair->ext; pair++) { in php_cli_server_mime_type_ctor()
2256 size_t ext_len = strlen(pair->ext); in php_cli_server_mime_type_ctor()
2257 zend_hash_str_add_ptr(&server->extension_mime_types, pair->ext, ext_len, (void*)pair->mime_type); in php_cli_server_mime_type_ctor()

Completed in 60 milliseconds

12