Searched refs:suggs (Results 1 – 3 of 3) sorted by relevance
/PHP-7.2/ext/enchant/docs/examples/ |
H A D | example1.php | 17 $suggs = enchant_dict_suggest($d, "soong"); variable 19 print_r($suggs);
|
/PHP-7.2/ext/enchant/tests/ |
H A D | dict_quick_check.phpt | 23 enchant_dict_quick_check($d, 'soong', $suggs); 25 echo "Elements: " . count($suggs) . "\n";
|
/PHP-7.2/ext/enchant/ |
H A D | enchant.c | 731 char **suggs; in PHP_FUNCTION() local 737 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg_st); in PHP_FUNCTION() 739 if (suggs && n_sugg) { in PHP_FUNCTION() 742 add_next_index_string(sugg, suggs[i]); in PHP_FUNCTION() 744 enchant_dict_free_suggestions(pdict->pdict, suggs); in PHP_FUNCTION() 780 char **suggs; in PHP_FUNCTION() local 791 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg_st); in PHP_FUNCTION() 793 if (suggs && n_sugg) { in PHP_FUNCTION() 798 add_next_index_string(return_value, suggs[i]); in PHP_FUNCTION() 801 enchant_dict_free_suggestions(pdict->pdict, suggs); in PHP_FUNCTION()
|
Completed in 6 milliseconds