Lines Matching refs:word

105 	ZEND_ARG_INFO(0, word)
111 ZEND_ARG_INFO(0, word)
713 char *word; in PHP_FUNCTION() local
717 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs|z/", &dict, &word, &wordlen, &sugg) == FAILURE) { in PHP_FUNCTION()
728 if (enchant_dict_check(pdict->pdict, word, wordlen) > 0) { in PHP_FUNCTION()
737 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg_st); in PHP_FUNCTION()
759 char *word; in PHP_FUNCTION() local
763 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
769 RETURN_BOOL(!enchant_dict_check(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
778 char *word; in PHP_FUNCTION() local
785 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
791 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg_st); in PHP_FUNCTION()
811 char *word; in PHP_FUNCTION() local
815 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
821 enchant_dict_add_to_personal(pdict->pdict, word, wordlen); in PHP_FUNCTION()
830 char *word; in PHP_FUNCTION() local
834 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
840 enchant_dict_add_to_session(pdict->pdict, word, wordlen); in PHP_FUNCTION()
849 char *word; in PHP_FUNCTION() local
853 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &dict, &word, &wordlen) == FAILURE) { in PHP_FUNCTION()
859 RETURN_BOOL(enchant_dict_is_in_session(pdict->pdict, word, wordlen)); in PHP_FUNCTION()