Lines Matching refs:pdict

39 	EnchantDict	   *pdict;  member
172 if (dict->pdict) { /* may have been freed by enchant_broker_free_dict */ in php_enchant_dict_free()
176 enchant_broker_free_dict(broker->pbroker, dict->pdict); in php_enchant_dict_free()
180 dict->pdict = NULL; in php_enchant_dict_free()
272 pdict = Z_ENCHANT_DICT_P(dict); \
273 if (!pdict->pdict) { \
449 EnchantDict *pdict; in PHP_FUNCTION() local
464 pdict = enchant_broker_request_dict(pbroker->pbroker, (const char *)tag); in PHP_FUNCTION()
465 if (pdict) { in PHP_FUNCTION()
470 dict->pdict = pdict; in PHP_FUNCTION()
484 EnchantDict *pdict; in PHP_FUNCTION() local
498 pdict = enchant_broker_request_pwl_dict(pbroker->pbroker, pwl); in PHP_FUNCTION()
499 if (pdict) { in PHP_FUNCTION()
504 dict->pdict = pdict; in PHP_FUNCTION()
516 enchant_dict *pdict; in PHP_FUNCTION() local
524 if (pdict->pdict) { in PHP_FUNCTION()
525 enchant_broker *broker = Z_ENCHANT_BROKER_P(&pdict->zbroker); in PHP_FUNCTION()
528 enchant_broker_free_dict(broker->pbroker, pdict->pdict); in PHP_FUNCTION()
530 zval_ptr_dtor(&pdict->zbroker); in PHP_FUNCTION()
532 pdict->pdict = NULL; in PHP_FUNCTION()
608 enchant_dict *pdict; in PHP_FUNCTION() local
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()
637 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION()
653 enchant_dict *pdict; in PHP_FUNCTION() local
661 RETURN_BOOL(!enchant_dict_check(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
672 enchant_dict *pdict; in PHP_FUNCTION() local
682 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
690 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION()
701 enchant_dict *pdict; in PHP_FUNCTION() local
709 enchant_dict_add(pdict->pdict, word, wordlen); in PHP_FUNCTION()
719 enchant_dict *pdict; in PHP_FUNCTION() local
727 enchant_dict_add_to_session(pdict->pdict, word, wordlen); in PHP_FUNCTION()
737 enchant_dict *pdict; in PHP_FUNCTION() local
745 RETURN_BOOL(enchant_dict_is_added(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
759 enchant_dict *pdict; in PHP_FUNCTION() local
767 enchant_dict_store_replacement(pdict->pdict, mis, mislen, cor, corlen); in PHP_FUNCTION()
775 enchant_dict *pdict; in PHP_FUNCTION() local
784 msg = enchant_dict_get_error(pdict->pdict); in PHP_FUNCTION()
797 enchant_dict *pdict; in PHP_FUNCTION() local
805 enchant_dict_describe(pdict->pdict, describe_dict_fn, (void *)return_value); in PHP_FUNCTION()