Lines Matching refs:pdict

45 	EnchantDict	   *pdict;  member
173 if (dict->pdict) { /* may have been freed by enchant_broker_free_dict */ in php_enchant_dict_free()
177 enchant_broker_free_dict(broker->pbroker, dict->pdict); in php_enchant_dict_free()
181 dict->pdict = NULL; in php_enchant_dict_free()
262 pdict = Z_ENCHANT_DICT_P(dict); \
263 if (!pdict->pdict) { \
439 EnchantDict *pdict; in PHP_FUNCTION() local
454 pdict = enchant_broker_request_dict(pbroker->pbroker, (const char *)tag); in PHP_FUNCTION()
455 if (pdict) { in PHP_FUNCTION()
460 dict->pdict = pdict; in PHP_FUNCTION()
474 EnchantDict *pdict; in PHP_FUNCTION() local
488 pdict = enchant_broker_request_pwl_dict(pbroker->pbroker, pwl); in PHP_FUNCTION()
489 if (pdict) { in PHP_FUNCTION()
494 dict->pdict = pdict; in PHP_FUNCTION()
506 enchant_dict *pdict; in PHP_FUNCTION() local
514 if (pdict->pdict) { in PHP_FUNCTION()
515 enchant_broker *broker = Z_ENCHANT_BROKER_P(&pdict->zbroker); in PHP_FUNCTION()
518 enchant_broker_free_dict(broker->pbroker, pdict->pdict); in PHP_FUNCTION()
520 zval_ptr_dtor(&pdict->zbroker); in PHP_FUNCTION()
522 pdict->pdict = NULL; in PHP_FUNCTION()
598 enchant_dict *pdict; in PHP_FUNCTION() local
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()
627 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION()
643 enchant_dict *pdict; in PHP_FUNCTION() local
651 RETURN_BOOL(!enchant_dict_check(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
662 enchant_dict *pdict; in PHP_FUNCTION() local
672 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION()
680 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION()
691 enchant_dict *pdict; in PHP_FUNCTION() local
699 enchant_dict_add(pdict->pdict, word, wordlen); in PHP_FUNCTION()
709 enchant_dict *pdict; in PHP_FUNCTION() local
717 enchant_dict_add_to_session(pdict->pdict, word, wordlen); in PHP_FUNCTION()
727 enchant_dict *pdict; in PHP_FUNCTION() local
735 RETURN_BOOL(enchant_dict_is_added(pdict->pdict, word, wordlen)); in PHP_FUNCTION()
749 enchant_dict *pdict; in PHP_FUNCTION() local
757 enchant_dict_store_replacement(pdict->pdict, mis, mislen, cor, corlen); in PHP_FUNCTION()
765 enchant_dict *pdict; in PHP_FUNCTION() local
774 msg = enchant_dict_get_error(pdict->pdict); in PHP_FUNCTION()
787 enchant_dict *pdict; in PHP_FUNCTION() local
795 enchant_dict_describe(pdict->pdict, describe_dict_fn, (void *)return_value); in PHP_FUNCTION()