Lines Matching refs:args

682 	mb_regex_groups_iter_args *args = (mb_regex_groups_iter_args *) parg;  in mb_regex_groups_iter()  local
689 gn = onig_name_to_backref_number(reg, name, name_end, args->region); in mb_regex_groups_iter()
690 beg = args->region->beg[gn]; in mb_regex_groups_iter()
691 end = args->region->end[gn]; in mb_regex_groups_iter()
692 if (beg >= 0 && beg < end && end <= args->search_len) { in mb_regex_groups_iter()
693 …add_assoc_stringl_ex(args->groups, (char *)name, name_end - name, &args->search_str[beg], end - be… in mb_regex_groups_iter()
695 add_assoc_bool_ex(args->groups, (char *)name, name_end - name, 0); in mb_regex_groups_iter()
954 mb_regex_groups_iter_args args = {array, string, string_len, regs}; in _php_mb_regex_ereg_exec() local
955 onig_foreach_name(re, mb_regex_groups_iter, &args); in _php_mb_regex_ereg_exec()
1083 zval args[1]; in _php_mb_regex_ereg_replace_exec() local
1092 mb_regex_groups_iter_args args = {&subpats, string, string_len, regs}; in _php_mb_regex_ereg_replace_exec() local
1093 onig_foreach_name(re, mb_regex_groups_iter, &args); in _php_mb_regex_ereg_replace_exec()
1096 ZVAL_COPY_VALUE(&args[0], &subpats); in _php_mb_regex_ereg_replace_exec()
1101 arg_replace_fci.params = args; in _php_mb_regex_ereg_replace_exec()
1408 mb_regex_groups_iter_args args = { in _php_mb_regex_ereg_search_exec() local
1414 onig_foreach_name(MBREX(search_re), mb_regex_groups_iter, &args); in _php_mb_regex_ereg_search_exec()
1539 mb_regex_groups_iter_args args = { in PHP_FUNCTION() local
1545 onig_foreach_name(MBREX(search_re), mb_regex_groups_iter, &args); in PHP_FUNCTION()