Searched refs:dictionary (Results 1 – 25 of 27) sorted by relevance
12
/PHP-7.4/ext/zlib/tests/ |
H A D | dictionary_usage.phpt | 2 Test dictionary usage on zlib methods 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]); 22 $r = inflate_init(ZLIB_ENCODING_DEFLATE, ["dictionary" => ["8"] + range("a", "z")]); 31 Warning: inflate_add(): dictionary does not match expected dictionary (incorrect adler32 hash) in %…
|
H A D | bug73944.phpt | 8 $in = inflate_init(ZLIB_ENCODING_RAW, array('dictionary' => str_repeat("\00", 32768))); 12 $in = inflate_init(ZLIB_ENCODING_RAW, array('dictionary' => $a));
|
/PHP-7.4/ext/enchant/tests/ |
H A D | dict_quick_check.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in… 14 die('skip, no dictionary for ' . $tag . ' tag');
|
H A D | broker_dict_exists.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | broker_request_dict_01.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | broker_set_ordering.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | broker_request_dict.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_get_error.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_describe.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_quick_check_01.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_suggest.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_add_to_personal.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_add_to_session.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_check.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_is_in_session.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | dict_store_replacement.phpt | 9 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
H A D | broker_free_dict.phpt | 9 if(!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary ins…
|
H A D | broker_free_02.phpt | 9 if(!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary ins…
|
H A D | enchant_broker_set_dict_path.phpt | 10 if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary in…
|
/PHP-7.4/ext/pspell/tests/ |
H A D | 003.phpt | 6 if (!@pspell_new('en')) die('skip English dictionary is not available'); 32 Warning: pspell_new_config(): PSPELL couldn't open the dictionary. reason: The encoding "b0rked" is…
|
H A D | 005.phpt | 6 if (!@pspell_new('en')) die('skip English dictionary is not available'); 37 Warning: pspell_new_personal(): PSPELL couldn't open the dictionary. reason: The file "%s005.php" i…
|
H A D | 004.phpt | 6 if (!@pspell_new('en')) die('skip English dictionary is not available');
|
H A D | 002.phpt | 6 if (!@pspell_new('en')) die('skip English dictionary is not available');
|
H A D | 001.phpt | 7 die("skip English dictionary is not available");
|
/PHP-7.4/ext/zlib/ |
H A D | zlib.c | 768 HashTable *dictionary = Z_ARR_P(option_buffer); in zlib_create_dictionary_string() local 770 if (zend_hash_num_elements(dictionary) > 0) { in zlib_create_dictionary_string() 773 zend_string **strings = emalloc(sizeof(zend_string *) * zend_hash_num_elements(dictionary)); in zlib_create_dictionary_string() 776 ZEND_HASH_FOREACH_VAL(dictionary, cur) { in zlib_create_dictionary_string() 809 end = strings + zend_hash_num_elements(dictionary); in zlib_create_dictionary_string()
|
Completed in 19 milliseconds
12