Lines Matching refs:wordlen

714 	size_t wordlen;  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()
760 size_t wordlen; 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()
779 size_t wordlen; 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()
812 size_t wordlen; 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()
831 size_t wordlen; 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()
850 size_t wordlen; 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()