/PHP-8.1/ext/mbstring/tests/ |
H A D | gh10192_utf7imap.phpt | 38 'invalid base64 character using surrogate pair between & and base64 character' => 'A &2Gc1 B', 39 'valid base64 character using surrogate pair between & and end of string' => 'A &2GfePQ', 40 'invalid base64 character using surrogate pair between & and end of string' => 'A &2Gc' 273 valid base64 character using surrogate pair between & and - 282 invalid base64 character using surrogate pair between & and - 291 valid base64 character using surrogate pair between & and non-base64 character 300 invalid base64 character using surrogate pair between & and non-base64 character 309 valid base64 character using surrogate pair between & and base64 character 318 invalid base64 character using surrogate pair between & and base64 character 327 valid base64 character using surrogate pair between & and end of string [all …]
|
H A D | gh10192_utf7.phpt | 50 'invalid base64 character using surrogate pair between + and base64 character' => 'A +2Gc1 B', 51 'valid base64 character using surrogate pair between + and end of string' => 'A +2GfePQ', 52 'invalid base64 character using surrogate pair between + and end of string' => 'A +2Gc' 392 valid base64 character using surrogate pair between + and - 401 invalid base64 character using surrogate pair between + and - 410 valid base64 character using surrogate pair between + and non-base64 character 419 invalid base64 character using surrogate pair between + and non-base64 character 428 valid base64 character using surrogate pair between + and base64 character 437 invalid base64 character using surrogate pair between + and base64 character 446 valid base64 character using surrogate pair between + and end of string [all …]
|
H A D | zend_multibyte-05.phpt | 12 // back to UTF-8. There should be only a pair of consecutive bytes that is
|
H A D | zend_multibyte-09.phpt | 13 // back to UTF-8. There should be only a pair of consecutive bytes that is
|
H A D | utf_encodings.phpt | 822 // Second half of surrogate pair comes first 825 // First half of surrogate pair not followed by second part 828 // First half of surrogate pair at end of string 842 // Second half of surrogate pair comes first 845 // First half of surrogate pair not followed by second part 848 // First half of surrogate pair at end of string 851 // Two successive codepoints which are both the 1st part of a surrogate pair 966 // Surrogate pair 995 // Second half of surrogate pair coming first 998 // First half of surrogate pair not followed by second half [all …]
|
H A D | utf7imap_encoding.phpt | 106 /* 1. The second half of a surrogate pair could come first, */ 120 die("That was supposed to be a surrogate pair"); 128 /* 2. The first half of a surrogate pair might be followed by an invalid 2nd part, */ 138 /* 3. The first half of a surrogate pair could come at the end of the string, */
|
/PHP-8.1/ext/iconv/tests/ |
H A D | bug74230.phpt | 10 $pair = $high.$low; 14 @\iconv('UTF-8', 'UTF-8', $pair) === false
|
H A D | iconv_mime_decode_headers.phpt | 11 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.1/ext/standard/tests/array/ |
H A D | array_change_key_case_variation.phpt | 17 /* 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 D | array_diff_assoc_variation8.phpt | 15 $array_assoc = array ('2' => 'c', //same key=>value pair, different order
|
H A D | array_diff_variation6.phpt | 15 $array_assoc = array ('2' => 'c', //same key=>value pair, different order
|
/PHP-8.1/ext/pcntl/ |
H A D | pcntl.c | 835 char **current_arg, **pair; in PHP_FUNCTION() local 879 pair = envp = safe_emalloc((envc + 1), sizeof(char *), 0); in PHP_FUNCTION() 897 *pair = safe_emalloc(Z_STRLEN_P(element) + 1, sizeof(char), ZSTR_LEN(key) + 1); in PHP_FUNCTION() 899 strlcpy(*pair, ZSTR_VAL(key), ZSTR_LEN(key) + 1); in PHP_FUNCTION() 900 strlcat(*pair, "=", pair_length); in PHP_FUNCTION() 901 strlcat(*pair, Z_STRVAL_P(element), pair_length); in PHP_FUNCTION() 906 pair++; in PHP_FUNCTION() 908 *(pair) = NULL; in PHP_FUNCTION() 916 for (pair = envp; *pair != NULL; pair++) efree(*pair); in PHP_FUNCTION()
|
/PHP-8.1/ext/sockets/ |
H A D | sockets.stub.php | 95 /** @param array $pair */ 96 function socket_create_pair(int $domain, int $type, int $protocol, &$pair): bool {} argument
|
/PHP-8.1/ext/sockets/tests/ |
H A D | socket_create_pair-wrongparams.phpt | 29 Warning: socket_create_pair(): Unable to create socket pair [%d]: %s not supported in %s on line %d
|
/PHP-8.1/ext/standard/tests/strings/ |
H A D | strtr_variation4.phpt | 7 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
|
H A D | strtr_variation1.phpt | 7 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
|
H A D | strtr_variation2.phpt | 7 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
|
H A D | strtr_variation3.phpt | 7 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
|
/PHP-8.1/ |
H A D | UPGRADING.INTERNALS | 84 char* + size_t pair the query string. Similarly, the query_string and 109 of returning a boolean, and the quoted string as a pair of out params. 110 Similarly the unquoted string is now a zend_string* instead of a pair of 113 pair for the SQL statement.
|
/PHP-8.1/Zend/ |
H A D | zend_weakrefs.c | 430 zval pair; in zend_weakmap_get_properties_for() local 431 array_init(&pair); in zend_weakmap_get_properties_for() 434 add_assoc_object(&pair, "key", obj); 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_new(ht, &pair); in zend_weakmap_get_properties_for()
|
/PHP-8.1/main/ |
H A D | rfc1867.c | 804 char *pair = NULL; local 816 while (*cd && (pair = getword(mbuff->input_encoding, &cd, ';'))) 818 char *key = NULL, *word = pair; 824 if (strchr(pair, '=')) { 825 key = getword(mbuff->input_encoding, &pair, '='); 831 param = getword_conf(mbuff->input_encoding, pair); 844 filename = getword_conf(mbuff->input_encoding, pair);
|
/PHP-8.1/ext/pcre/tests/ |
H A D | bug76514.phpt | 490 (?<pair> \s* (?&string) \s* : (?&json) \s* ) 491 (?<object> \{ (?: (?&pair) (?: , (?&pair) )* )? \s* \} )
|
/PHP-8.1/ext/standard/ |
H A D | streamsfuncs.c | 57 php_socket_t pair[2]; in PHP_FUNCTION() local 65 if (0 != socketpair((int)domain, (int)type, (int)protocol, pair)) { in PHP_FUNCTION() 72 s1 = php_stream_sock_open_from_socket(pair[0], 0); in PHP_FUNCTION() 74 close(pair[0]); in PHP_FUNCTION() 75 close(pair[1]); in PHP_FUNCTION() 79 s2 = php_stream_sock_open_from_socket(pair[1], 0); in PHP_FUNCTION() 82 close(pair[1]); in PHP_FUNCTION()
|
/PHP-8.1/build/ |
H A D | php_cxx_compile_stdcxx.m4 | 800 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.1/ext/openssl/tests/ |
H A D | ecc.phpt | 61 // openssl_csr_new creates a new public key pair if the key argument is null
|