Lines Matching refs:option

474 static size_t _php_mb_regex_get_option_string(char *str, size_t len, OnigOptionType option, OnigSyn…  in _php_mb_regex_get_option_string()  argument
481 if ((option & ONIG_OPTION_IGNORECASE) != 0) { in _php_mb_regex_get_option_string()
489 if ((option & ONIG_OPTION_EXTEND) != 0) { in _php_mb_regex_get_option_string()
497 if ((option & (ONIG_OPTION_MULTILINE | ONIG_OPTION_SINGLELINE)) == in _php_mb_regex_get_option_string()
505 if ((option & ONIG_OPTION_MULTILINE) != 0) { in _php_mb_regex_get_option_string()
513 if ((option & ONIG_OPTION_SINGLELINE) != 0) { in _php_mb_regex_get_option_string()
521 if ((option & ONIG_OPTION_FIND_LONGEST) != 0) { in _php_mb_regex_get_option_string()
528 if ((option & ONIG_OPTION_FIND_NOT_EMPTY) != 0) { in _php_mb_regex_get_option_string()
580 _php_mb_regex_init_options(const char *parg, int narg, OnigOptionType *option, OnigSyntaxType **syn… in _php_mb_regex_init_options() argument
645 if (option != NULL) *option|=optm; in _php_mb_regex_init_options()
1143 OnigOptionType option = 0; in PHP_FUNCTION() local
1157 _php_mb_regex_init_options(option_str, option_str_len, &option, &syntax, NULL); in PHP_FUNCTION()
1159 option |= MBREX(regex_default_options); in PHP_FUNCTION()
1164 …if ((re = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(current_mbctype)… in PHP_FUNCTION()
1187 OnigOptionType option; in _php_mb_regex_ereg_search_exec() local
1195 option = MBREX(regex_default_options); in _php_mb_regex_ereg_search_exec()
1198 option = 0; in _php_mb_regex_ereg_search_exec()
1199 _php_mb_regex_init_options(arg_options, arg_options_len, &option, &syntax, NULL); in _php_mb_regex_ereg_search_exec()
1204 …if ((MBREX(search_re) = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(cu… in _php_mb_regex_ereg_search_exec()
1315 OnigOptionType option; in PHP_FUNCTION() local
1326 option = MBREX(regex_default_options); in PHP_FUNCTION()
1330 option = 0; in PHP_FUNCTION()
1331 _php_mb_regex_init_options(arg_options, arg_options_len, &option, &syntax, NULL); in PHP_FUNCTION()
1336 …if ((MBREX(search_re) = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(cu… in PHP_FUNCTION()