Lines Matching refs:word

103 	ZEND_ARG_INFO(0, word)
109 ZEND_ARG_INFO(0, word)
710 char *word; in PHP_FUNCTION() local
714 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs|z", &dict, &word, &wordlen, &sugg) == FAILURE) { in PHP_FUNCTION()
727 if (enchant_dict_check(pdict->pdict, word, wordlen) > 0) { in PHP_FUNCTION()
735 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
756 char *word; in PHP_FUNCTION() local
760 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
766 RETURN_BOOL(!enchant_dict_check(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
775 char *word; in PHP_FUNCTION() local
781 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
787 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
806 char *word; in PHP_FUNCTION() local
810 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
816 enchant_dict_add_to_personal(pdict->pdict, word, wordlen); in PHP_FUNCTION()
825 char *word; in PHP_FUNCTION() local
829 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
835 enchant_dict_add_to_session(pdict->pdict, word, wordlen); in PHP_FUNCTION()
844 char *word; in PHP_FUNCTION() local
848 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
854 RETURN_BOOL(enchant_dict_is_in_session(pdict->pdict, word, wordlen)); in PHP_FUNCTION()