Home
last modified time | relevance | path

Searched refs:capture_p (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c836 ecma_regexp_capture_t *const capture_p = re_ctx_p->captures_p + group_p->subcapture_start; in ecma_regexp_run() local
839 capture_p[i].begin_p = NULL; in ecma_regexp_run()
879 … ecma_regexp_capture_t *const capture_p = re_ctx_p->captures_p + group_p->subcapture_start + i; in ecma_regexp_run() local
880 saved_captures_p[i] = capture_p->begin_p; in ecma_regexp_run()
881 capture_p->begin_p = NULL; in ecma_regexp_run()
898 … ecma_regexp_capture_t *const capture_p = re_ctx_p->captures_p + group_p->subcapture_start + i; in ecma_regexp_run() local
899 capture_p->begin_p = saved_captures_p[i]; in ecma_regexp_run()
1004 ecma_regexp_capture_t *const capture_p = re_ctx_p->captures_p + group_p->subcapture_start; in ecma_regexp_run() local
1007 capture_p[i].begin_p = NULL; in ecma_regexp_run()
1049 … ecma_regexp_capture_t *const capture_p = re_ctx_p->captures_p + group_p->subcapture_start + i; in ecma_regexp_run() local
[all …]
Decma-regexp-object.h112 ecma_regexp_get_capture_value (const ecma_regexp_capture_t *const capture_p);
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-helpers.c968 const ecma_regexp_capture_t *const capture_p = ctx_p->u.captures_p + idx; in ecma_builtin_replace_substitute() local
970 if (ECMA_RE_IS_CAPTURE_DEFINED (capture_p)) in ecma_builtin_replace_substitute()
973 capture_p->begin_p, in ecma_builtin_replace_substitute()
974 … (lit_utf8_size_t) (capture_p->end_p - capture_p->begin_p)); in ecma_builtin_replace_substitute()