Lines Matching refs:word
400 zend_string *word; in PHP_FUNCTION() local
403 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OS", &zmgr, php_pspell_ce, &word) == FAILURE) { in PHP_FUNCTION()
408 if (pspell_manager_check(manager, ZSTR_VAL(word))) { in PHP_FUNCTION()
420 zend_string *word; in PHP_FUNCTION() local
425 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OS", &zmgr, php_pspell_ce, &word) == FAILURE) { in PHP_FUNCTION()
432 wl = pspell_manager_suggest(manager, ZSTR_VAL(word)); in PHP_FUNCTION()
472 zend_string *word; in PHP_FUNCTION() local
475 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OS", &zmgr, php_pspell_ce, &word) == FAILURE) { in PHP_FUNCTION()
481 if (ZSTR_LEN(word) == 0) { in PHP_FUNCTION()
485 pspell_manager_add_to_personal(manager, ZSTR_VAL(word)); in PHP_FUNCTION()
499 zend_string *word; in PHP_FUNCTION() local
502 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OS", &zmgr, php_pspell_ce, &word) == FAILURE) { in PHP_FUNCTION()
508 if (ZSTR_LEN(word) == 0) { in PHP_FUNCTION()
512 pspell_manager_add_to_session(manager, ZSTR_VAL(word)); in PHP_FUNCTION()