Lines Matching refs:word

606 	char *word;  in PHP_FUNCTION()  local
610 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os|z", &dict, enchant_dict_ce, &word, &wordlen, &sugg)… in PHP_FUNCTION()
623 if (enchant_dict_check(pdict->pdict, word, wordlen) > 0) { in PHP_FUNCTION()
631 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
651 char *word; in PHP_FUNCTION() local
655 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
661 RETURN_BOOL(!enchant_dict_check(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
669 char *word; in PHP_FUNCTION() local
675 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
682 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
699 char *word; in PHP_FUNCTION() local
703 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
709 enchant_dict_add(pdict->pdict, word, wordlen); in PHP_FUNCTION()
717 char *word; in PHP_FUNCTION() local
721 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
727 enchant_dict_add_to_session(pdict->pdict, word, wordlen); in PHP_FUNCTION()
735 char *word; in PHP_FUNCTION() local
739 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
745 RETURN_BOOL(enchant_dict_is_added(pdict->pdict, word, wordlen)); in PHP_FUNCTION()