Lines Matching refs:wordlen

607 	size_t wordlen;  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()
652 size_t wordlen; 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()
670 size_t wordlen; 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()
700 size_t wordlen; 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()
718 size_t wordlen; 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()
736 size_t wordlen; 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()