Home
last modified time | relevance | path

Searched refs:suggs (Results 1 – 2 of 2) sorted by relevance

/php-src/ext/enchant/tests/
H A Ddict_quick_check.phpt25 enchant_dict_quick_check($d, 'soong', $suggs);
27 echo "Elements: " . count($suggs) . "\n";
/php-src/ext/enchant/
H A Denchant.c615 char **suggs; in PHP_FUNCTION() local
621 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
622 if (suggs && n_sugg) { in PHP_FUNCTION()
625 add_next_index_string(sugg, suggs[i]); in PHP_FUNCTION()
627 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION()
661 char **suggs; in PHP_FUNCTION() local
672 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
673 if (suggs && n_sugg) { in PHP_FUNCTION()
677 add_next_index_string(return_value, suggs[i]); in PHP_FUNCTION()
680 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION()

Completed in 8 milliseconds