Lines Matching refs:config

90 	ZEND_ARG_INFO(0, config)
221 PspellConfig *config = (PspellConfig *)rsrc->ptr; in php_pspell_close_config() local
223 delete_pspell_config(config); in php_pspell_close_config()
232 config = (PspellConfig *)Z_RES_P(res)->ptr; \
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()
686 PspellConfig *config; in PHP_FUNCTION() local
701 config = new_pspell_config(); in PHP_FUNCTION()
718 pspell_config_replace(config, "data-dir", data_dir); in PHP_FUNCTION()
719 pspell_config_replace(config, "dict-dir", dict_dir); in PHP_FUNCTION()
724 pspell_config_replace(config, "language-tag", language); in PHP_FUNCTION()
727 pspell_config_replace(config, "spelling", spelling); in PHP_FUNCTION()
731 pspell_config_replace(config, "jargon", jargon); in PHP_FUNCTION()
735 pspell_config_replace(config, "encoding", encoding); in PHP_FUNCTION()
740 pspell_config_replace(config, "save-repl", "false"); in PHP_FUNCTION()
742 ind = zend_list_insert(config, le_pspell_config); in PHP_FUNCTION()
753 PspellConfig *config; in PHP_FUNCTION() local
761 pspell_config_replace(config, "run-together", runtogether ? "true" : "false"); in PHP_FUNCTION()
772 PspellConfig *config; in PHP_FUNCTION() local
782 pspell_config_replace(config, "sug-mode", "fast"); in PHP_FUNCTION()
784 pspell_config_replace(config, "sug-mode", "normal"); in PHP_FUNCTION()
786 pspell_config_replace(config, "sug-mode", "bad-spellers"); in PHP_FUNCTION()
799 PspellConfig *config; in PHP_FUNCTION() local
809 pspell_config_replace(config, "ignore", ignore_str); in PHP_FUNCTION()
819 PspellConfig *config; in pspell_config_path() local
831 pspell_config_replace(config, option, value); in pspell_config_path()
867 PspellConfig *config; in PHP_FUNCTION() local
875 pspell_config_replace(config, "save-repl", "true"); in PHP_FUNCTION()
881 pspell_config_replace(config, "repl", repl); in PHP_FUNCTION()
893 PspellConfig *config; in PHP_FUNCTION() local
901 pspell_config_replace(config, "save-repl", save ? "true" : "false"); in PHP_FUNCTION()