Lines Matching refs:word
402 zend_string *word; in PHP_FUNCTION() local
405 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OS", &zmgr, php_pspell_ce, &word) == FAILURE) { in PHP_FUNCTION()
410 if (pspell_manager_check(manager, ZSTR_VAL(word))) { in PHP_FUNCTION()
422 zend_string *word; in PHP_FUNCTION() local
427 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OS", &zmgr, php_pspell_ce, &word) == FAILURE) { in PHP_FUNCTION()
434 wl = pspell_manager_suggest(manager, ZSTR_VAL(word)); in PHP_FUNCTION()
474 zend_string *word; in PHP_FUNCTION() local
477 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OS", &zmgr, php_pspell_ce, &word) == FAILURE) { in PHP_FUNCTION()
483 if (ZSTR_LEN(word) == 0) { in PHP_FUNCTION()
487 pspell_manager_add_to_personal(manager, ZSTR_VAL(word)); in PHP_FUNCTION()
501 zend_string *word; in PHP_FUNCTION() local
504 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OS", &zmgr, php_pspell_ce, &word) == FAILURE) { in PHP_FUNCTION()
510 if (ZSTR_LEN(word) == 0) { in PHP_FUNCTION()
514 pspell_manager_add_to_session(manager, ZSTR_VAL(word)); in PHP_FUNCTION()