/PHP-8.2/ext/com_dotnet/tests/ |
H A D | bug34272.phpt | 10 $dict = new COM("Scripting.Dictionary"); 11 $dict->add('foo', array()); 12 print sizeof($dict['foo'])."\n"; 13 $dict->add('bar', array(23)); 14 print sizeof($dict['bar'])." \n";
|
H A D | bug79299.phpt | 7 $dict = new COM("Scripting.Dictionary"); 9 com_print_typeinfo($dict);
|
H A D | bug45280.phpt | 7 $dict = new COM("Scripting.Dictionary"); 9 $reflection = new ReflectionObject($dict);
|
/PHP-8.2/ext/enchant/ |
H A D | enchant.c | 183 dict->pdict = NULL; in php_enchant_dict_free() 438 enchant_dict *dict; in PHP_FUNCTION() local 505 zval *dict; in PHP_FUNCTION() local 640 zval *dict; in PHP_FUNCTION() local 658 zval *dict; in PHP_FUNCTION() local 688 zval *dict; in PHP_FUNCTION() local 706 zval *dict; in PHP_FUNCTION() local 724 zval *dict; in PHP_FUNCTION() local 745 zval *dict; in PHP_FUNCTION() local 764 zval *dict; in PHP_FUNCTION() local [all …]
|
/PHP-8.2/sapi/fuzzer/ |
H A D | generate_mbstring_dict.php | 8 $dict = ""; variable 10 $dict .= "\"" . $encoding . ",\"\n"; 12 file_put_contents(__DIR__ . "/dict/mbstring", $dict);
|
H A D | generate_unserialize_dict.php | 3 $dict = ""; variable 6 $dict .= "\"$len:\\\"" . addslashes($class) . "\\\"\"\n"; 9 file_put_contents(__DIR__ . "/dict/unserialize", $dict);
|
H A D | README.md | 49 sapi/fuzzer/php-fuzz-unserialize -dict=$PWD/sapi/fuzzer/dict/unserialize ./my-unserialize-corpus 80 sapi/fuzzer/php-fuzz-mbstring -dict=$PWD/sapi/fuzzer/dict/mbstring ./my-mbstring-corpus
|
/PHP-8.2/ext/zlib/tests/ |
H A D | dictionary_usage.phpt | 8 $dict = range("a", "z"); 10 $r = deflate_init(ZLIB_ENCODING_DEFLATE, ["dictionary" => $dict]); 14 $r = deflate_init(ZLIB_ENCODING_DEFLATE, ["dictionary" => implode("\0", $dict)."\0"]); 18 $r = inflate_init(ZLIB_ENCODING_DEFLATE, ["dictionary" => $dict]);
|
/PHP-8.2/ext/enchant/tests/ |
H A D | broker_free_dict.phpt | 2 enchant_broker_free_dict(resource $dict); function 32 echo("dict broker free has failed\n"); 36 echo("dict add to personal failed\n"); 40 echo("broker request dict failed\n");
|
H A D | broker_free_02.phpt | 41 echo("broker dict free failed\n"); 44 echo("dict add to personal failed\n"); 47 echo("broker request dict failed\n");
|
H A D | broker_request_dict_01.phpt | 18 $dict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']); 19 if (is_object($dict)) {
|
H A D | broker_request_dict.phpt | 19 $dict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']); 21 if (is_object($dict)) {
|
H A D | enchant_broker_set_dict_path.phpt | 38 echo("broker get dict path has failed \n"); 42 echo("broker set dict path {$backEndDictType2} has failed \n"); 45 echo("broker set dict path {$backEndDictType1} has failed \n");
|
H A D | dict_describe.phpt | 29 echo("broker request dict failed\n"); 32 echo("broker request dict failed\n");
|
H A D | dict_quick_check_01.phpt | 28 echo("dict quick check failed\n"); 31 echo("broker request dict failed\n");
|
H A D | broker_request_pwl_dict.phpt | 27 echo("broker dict describe is not a resource failed\n"); 30 echo("dict broker request pwl has failed\n");
|
H A D | dict_add_to_personal.phpt | 30 echo("dict add to personal failed\n"); 34 echo("broker request dict failed\n");
|
H A D | dict_add_to_session.phpt | 29 echo("dict add to session failed\n"); 34 echo("broker request dict failed\n");
|
H A D | dict_check.phpt | 30 echo("dict check new word failed\n"); 34 echo("broker request dict failed\n");
|
H A D | dict_suggest.phpt | 29 echo("dict suggest failed\n"); 33 echo("broker request dict failed\n");
|
H A D | dict_is_in_session.phpt | 29 echo("dict add to personal failed\n"); 32 echo("broker request dict failed\n");
|
H A D | dict_store_replacement.phpt | 30 echo("dict add to personal failed\n"); 33 echo("broker request dict failed\n");
|
H A D | dict_get_error.phpt | 24 echo("broker request dict failed\n");
|
/PHP-8.2/ext/zlib/ |
H A D | zlib.c | 799 *dict = emalloc(ZSTR_LEN(str)); in zlib_create_dictionary_string() 800 memcpy(*dict, ZSTR_VAL(str), ZSTR_LEN(str)); in zlib_create_dictionary_string() 838 dictptr = *dict = emalloc(*dictlen); in zlib_create_dictionary_string() 865 char *dict = NULL; in PHP_FUNCTION() local 882 if (!zlib_create_dictionary_string(options, &dict, &dictlen)) { in PHP_FUNCTION() 901 ctx->inflateDict = dict; in PHP_FUNCTION() 1083 char *dict = NULL; in PHP_FUNCTION() local 1131 if (!zlib_create_dictionary_string(options, &dict, &dictlen)) { in PHP_FUNCTION() 1163 if (dict) { in PHP_FUNCTION() 1164 int success = deflateSetDictionary(&ctx->Z, (Bytef *) dict, dictlen); in PHP_FUNCTION() [all …]
|
/PHP-8.2/.github/scripts/windows/ |
H A D | test_task.bat | 106 …-Command wget https://downloads.php.net/~windows/qa/appveyor/ext/enchant/dict.zip -OutFile dict.zip 107 unzip dict.zip 108 del /q dict.zip
|