Home
last modified time | relevance | path

Searched refs:RE_FLAG_GLOBAL (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-regexp-prototype.c253 return ecma_make_boolean_value (flags & RE_FLAG_GLOBAL); in ecma_builtin_regexp_prototype_get_global()
600 if (flags & RE_FLAG_GLOBAL) in ecma_builtin_regexp_prototype_to_string()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.h39 RE_FLAG_GLOBAL = (1u << 1), /**< ECMA-262 v5, 15.10.7.2 */ enumerator
Decma-regexp-object.c78 flag = RE_FLAG_GLOBAL; in ecma_regexp_parse_flags()
147 prop_value_p->value = ecma_make_boolean_value (flags & RE_FLAG_GLOBAL); in ecma_regexp_create_props()
184 prop_value_p->value = ecma_make_boolean_value (flags & RE_FLAG_GLOBAL); in ecma_regexp_update_props()
1694 if (bc_p->header.status_flags & (RE_FLAG_GLOBAL | RE_FLAG_STICKY)) in ecma_regexp_exec_helper()
1795 if (re_ctx.flags & RE_FLAG_GLOBAL) in ecma_regexp_exec_helper()
1845 if (re_ctx.flags & (RE_FLAG_GLOBAL | RE_FLAG_STICKY)) in ecma_regexp_exec_helper()
2623 if (!(re_ctx.flags & RE_FLAG_GLOBAL)) in ecma_regexp_replace_helper_fast()
/third_party/jerryscript/jerry-core/api/
Djerry.c85 JERRY_STATIC_ASSERT ((int) RE_FLAG_GLOBAL == (int) JERRY_REGEXP_FLAG_GLOBAL
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c2784 flag = RE_FLAG_GLOBAL; in lexer_construct_regexp_object()