Lines Matching refs:word

595 	char *word;  in PHP_FUNCTION()  local
599 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os|z", &dict, enchant_dict_ce, &word, &wordlen, &sugg)… in PHP_FUNCTION()
612 if (enchant_dict_check(pdict->pdict, word, wordlen) > 0) { in PHP_FUNCTION()
620 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
640 char *word; in PHP_FUNCTION() local
644 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
650 RETURN_BOOL(!enchant_dict_check(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
658 char *word; in PHP_FUNCTION() local
664 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
671 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
688 char *word; in PHP_FUNCTION() local
692 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
698 enchant_dict_add(pdict->pdict, word, wordlen); in PHP_FUNCTION()
706 char *word; in PHP_FUNCTION() local
710 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
716 enchant_dict_add_to_session(pdict->pdict, word, wordlen); in PHP_FUNCTION()
724 char *word; in PHP_FUNCTION() local
728 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &dict, enchant_dict_ce, &word, &wordlen) == FAILU… in PHP_FUNCTION()
734 RETURN_BOOL(enchant_dict_is_added(pdict->pdict, word, wordlen)); in PHP_FUNCTION()