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()
1139 OnigOptionType option = 0; in PHP_FUNCTION() local
1153 _php_mb_regex_init_options(option_str, option_str_len, &option, &syntax, NULL); in PHP_FUNCTION()
1155 option |= MBREX(regex_default_options); in PHP_FUNCTION()
1160 …if ((re = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(current_mbctype)… in PHP_FUNCTION()
1183 OnigOptionType option; in _php_mb_regex_ereg_search_exec() local
1191 option = MBREX(regex_default_options); in _php_mb_regex_ereg_search_exec()
1194 option = 0; in _php_mb_regex_ereg_search_exec()
1195 _php_mb_regex_init_options(arg_options, arg_options_len, &option, &syntax, NULL); in _php_mb_regex_ereg_search_exec()
1200 …if ((MBREX(search_re) = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(cu… in _php_mb_regex_ereg_search_exec()
1314 OnigOptionType option; in PHP_FUNCTION() local
1325 option = MBREX(regex_default_options); in PHP_FUNCTION()
1329 option = 0; in PHP_FUNCTION()
1330 _php_mb_regex_init_options(arg_options, arg_options_len, &option, &syntax, NULL); in PHP_FUNCTION()
1335 …if ((MBREX(search_re) = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(cu… in PHP_FUNCTION()