Lines Matching refs:config

94 	ZEND_ARG_INFO(0, config)
225 PspellConfig *config = (PspellConfig *)rsrc->ptr; in php_pspell_close_config() local
227 delete_pspell_config(config); in php_pspell_close_config()
231 config = (PspellConfig *) zend_list_find(conf, &type); \
232 if (config == NULL || type != le_pspell_config) { \
278 PspellConfig *config; in PHP_FUNCTION() local
285 config = new_pspell_config(); in PHP_FUNCTION()
302 pspell_config_replace(config, "data-dir", data_dir); in PHP_FUNCTION()
303 pspell_config_replace(config, "dict-dir", dict_dir); in PHP_FUNCTION()
308 pspell_config_replace(config, "language-tag", language); in PHP_FUNCTION()
311 pspell_config_replace(config, "spelling", spelling); in PHP_FUNCTION()
315 pspell_config_replace(config, "jargon", jargon); in PHP_FUNCTION()
319 pspell_config_replace(config, "encoding", encoding); in PHP_FUNCTION()
327 pspell_config_replace(config, "sug-mode", "fast"); in PHP_FUNCTION()
329 pspell_config_replace(config, "sug-mode", "normal"); in PHP_FUNCTION()
331 pspell_config_replace(config, "sug-mode", "bad-spellers"); in PHP_FUNCTION()
336 pspell_config_replace(config, "run-together", "true"); in PHP_FUNCTION()
340 ret = new_pspell_manager(config); in PHP_FUNCTION()
341 delete_pspell_config(config); in PHP_FUNCTION()
375 PspellConfig *config; in PHP_FUNCTION() local
382 config = new_pspell_config(); in PHP_FUNCTION()
399 pspell_config_replace(config, "data-dir", data_dir); in PHP_FUNCTION()
400 pspell_config_replace(config, "dict-dir", dict_dir); in PHP_FUNCTION()
406 delete_pspell_config(config); in PHP_FUNCTION()
410 pspell_config_replace(config, "personal", personal); in PHP_FUNCTION()
411 pspell_config_replace(config, "save-repl", "false"); in PHP_FUNCTION()
413 pspell_config_replace(config, "language-tag", language); in PHP_FUNCTION()
416 pspell_config_replace(config, "spelling", spelling); in PHP_FUNCTION()
420 pspell_config_replace(config, "jargon", jargon); in PHP_FUNCTION()
424 pspell_config_replace(config, "encoding", encoding); in PHP_FUNCTION()
432 pspell_config_replace(config, "sug-mode", "fast"); in PHP_FUNCTION()
434 pspell_config_replace(config, "sug-mode", "normal"); in PHP_FUNCTION()
436 pspell_config_replace(config, "sug-mode", "bad-spellers"); in PHP_FUNCTION()
441 pspell_config_replace(config, "run-together", "true"); in PHP_FUNCTION()
445 ret = new_pspell_manager(config); in PHP_FUNCTION()
446 delete_pspell_config(config); in PHP_FUNCTION()
468 PspellConfig *config; in PHP_FUNCTION() local
476 ret = new_pspell_manager(config); in PHP_FUNCTION()
689 PspellConfig *config; in PHP_FUNCTION() local
704 config = new_pspell_config(); in PHP_FUNCTION()
721 pspell_config_replace(config, "data-dir", data_dir); in PHP_FUNCTION()
722 pspell_config_replace(config, "dict-dir", dict_dir); in PHP_FUNCTION()
727 pspell_config_replace(config, "language-tag", language); in PHP_FUNCTION()
730 pspell_config_replace(config, "spelling", spelling); in PHP_FUNCTION()
734 pspell_config_replace(config, "jargon", jargon); in PHP_FUNCTION()
738 pspell_config_replace(config, "encoding", encoding); in PHP_FUNCTION()
743 pspell_config_replace(config, "save-repl", "false"); in PHP_FUNCTION()
745 ind = zend_list_insert(config, le_pspell_config TSRMLS_CC); in PHP_FUNCTION()
757 PspellConfig *config; in PHP_FUNCTION() local
765 pspell_config_replace(config, "run-together", runtogether ? "true" : "false"); in PHP_FUNCTION()
777 PspellConfig *config; in PHP_FUNCTION() local
787 pspell_config_replace(config, "sug-mode", "fast"); in PHP_FUNCTION()
789 pspell_config_replace(config, "sug-mode", "normal"); in PHP_FUNCTION()
791 pspell_config_replace(config, "sug-mode", "bad-spellers"); in PHP_FUNCTION()
805 PspellConfig *config; in PHP_FUNCTION() local
815 pspell_config_replace(config, "ignore", ignore_str); in PHP_FUNCTION()
826 PspellConfig *config; in pspell_config_path() local
838 pspell_config_replace(config, option, value); in pspell_config_path()
875 PspellConfig *config; in PHP_FUNCTION() local
883 pspell_config_replace(config, "save-repl", "true"); in PHP_FUNCTION()
889 pspell_config_replace(config, "repl", repl); in PHP_FUNCTION()
902 PspellConfig *config; in PHP_FUNCTION() local
910 pspell_config_replace(config, "save-repl", save ? "true" : "false"); in PHP_FUNCTION()