Lines Matching refs:word

596 	char *word;  in PHP_FUNCTION()  local
600 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os|z", &dict, enchant_dict_ce, &word, &wordlen, &sugg)… in PHP_FUNCTION()
613 if (enchant_dict_check(pdict->pdict, word, wordlen) > 0) { in PHP_FUNCTION()
621 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
641 char *word; in PHP_FUNCTION() local
645 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
651 RETURN_BOOL(!enchant_dict_check(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
659 char *word; in PHP_FUNCTION() local
665 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
672 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
689 char *word; in PHP_FUNCTION() local
693 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
699 enchant_dict_add(pdict->pdict, word, wordlen); in PHP_FUNCTION()
707 char *word; in PHP_FUNCTION() local
711 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
717 enchant_dict_add_to_session(pdict->pdict, word, wordlen); in PHP_FUNCTION()
725 char *word; in PHP_FUNCTION() local
729 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
735 RETURN_BOOL(enchant_dict_is_added(pdict->pdict, word, wordlen)); in PHP_FUNCTION()