Home
last modified time | relevance | path

Searched refs:dict (Results 1 – 25 of 31) sorted by relevance

12

/php-src/ext/com_dotnet/tests/
H A Dbug34272.phpt10 $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 Dbug79299.phpt7 $dict = new COM("Scripting.Dictionary");
9 com_print_typeinfo($dict);
H A Dbug45280.phpt7 $dict = new COM("Scripting.Dictionary");
9 $reflection = new ReflectionObject($dict);
/php-src/ext/enchant/
H A Denchant.c181 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-src/sapi/fuzzer/
H A Dgenerate_mbstring_dict.php8 $dict = ""; variable
10 $dict .= "\"" . $encoding . ",\"\n";
12 file_put_contents(__DIR__ . "/dict/mbstring", $dict);
H A Dgenerate_unserialize_dict.php3 $dict = ""; variable
6 $dict .= "\"$len:\\\"" . addslashes($class) . "\\\"\"\n";
9 file_put_contents(__DIR__ . "/dict/unserialize", $dict);
H A DREADME.md49 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-src/ext/zlib/tests/
H A Ddictionary_usage.phpt8 $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-src/ext/enchant/tests/
H A Dbroker_free_dict.phpt2 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 Dbroker_free_02.phpt41 echo("broker dict free failed\n");
44 echo("dict add to personal failed\n");
47 echo("broker request dict failed\n");
H A Dbroker_request_dict_01.phpt18 $dict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']);
19 if (is_object($dict)) {
H A Dbroker_request_dict.phpt19 $dict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']);
21 if (is_object($dict)) {
H A Denchant_broker_set_dict_path.phpt38 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 Ddict_describe.phpt29 echo("broker request dict failed\n");
32 echo("broker request dict failed\n");
H A Ddict_quick_check_01.phpt28 echo("dict quick check failed\n");
31 echo("broker request dict failed\n");
H A Dbroker_request_pwl_dict.phpt27 echo("broker dict describe is not a resource failed\n");
30 echo("dict broker request pwl has failed\n");
H A Ddict_add_to_personal.phpt30 echo("dict add to personal failed\n");
34 echo("broker request dict failed\n");
H A Ddict_add_to_session.phpt29 echo("dict add to session failed\n");
34 echo("broker request dict failed\n");
H A Ddict_check.phpt30 echo("dict check new word failed\n");
34 echo("broker request dict failed\n");
H A Ddict_suggest.phpt29 echo("dict suggest failed\n");
33 echo("broker request dict failed\n");
H A Ddict_is_in_session.phpt29 echo("dict add to personal failed\n");
32 echo("broker request dict failed\n");
H A Ddict_store_replacement.phpt30 echo("dict add to personal failed\n");
33 echo("broker request dict failed\n");
H A Ddict_get_error.phpt24 echo("broker request dict failed\n");
/php-src/ext/libxml/
H A Dlibxml.c207 xmlDictPtr dict = entity->doc != NULL ? entity->doc->dict : NULL; in php_libxml_node_free() local
208 if (dict == NULL || !xmlDictOwns(dict, entity->name)) { in php_libxml_node_free()
211 if (dict == NULL || !xmlDictOwns(dict, entity->ExternalID)) { in php_libxml_node_free()
214 if (dict == NULL || !xmlDictOwns(dict, entity->SystemID)) { in php_libxml_node_free()
217 if (dict == NULL || !xmlDictOwns(dict, entity->URI)) { in php_libxml_node_free()
220 if (dict == NULL || !xmlDictOwns(dict, entity->content)) { in php_libxml_node_free()
223 if (dict == NULL || !xmlDictOwns(dict, entity->orig)) { in php_libxml_node_free()
/php-src/ext/zlib/
H A Dzlib.c797 *dict = emalloc(ZSTR_LEN(str)); in zlib_create_dictionary_string()
798 memcpy(*dict, ZSTR_VAL(str), ZSTR_LEN(str)); in zlib_create_dictionary_string()
842 dictptr = *dict = emalloc(*dictlen); in zlib_create_dictionary_string()
869 char *dict = NULL; in PHP_FUNCTION() local
886 if (!zlib_create_dictionary_string(options, &dict, &dictlen)) { in PHP_FUNCTION()
905 ctx->inflateDict = dict; in PHP_FUNCTION()
1087 char *dict = NULL; in PHP_FUNCTION() local
1135 if (!zlib_create_dictionary_string(options, &dict, &dictlen)) { in PHP_FUNCTION()
1167 if (dict) { in PHP_FUNCTION()
1168 int success = deflateSetDictionary(&ctx->Z, (Bytef *) dict, dictlen); in PHP_FUNCTION()
[all …]

Completed in 41 milliseconds

12