Home
last modified time | relevance | path

Searched refs:RE_FLAG_STICKY (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.h42 RE_FLAG_STICKY = (1u << 4), /**< ECMA-262 v6, 21.2.5.12 */ enumerator
Decma-regexp-object.c93 flag = RE_FLAG_STICKY; in ecma_regexp_parse_flags()
1694 if (bc_p->header.status_flags & (RE_FLAG_GLOBAL | RE_FLAG_STICKY)) in ecma_regexp_exec_helper()
1775 if (re_ctx.flags & RE_FLAG_STICKY) in ecma_regexp_exec_helper()
1845 if (re_ctx.flags & (RE_FLAG_GLOBAL | RE_FLAG_STICKY)) in ecma_regexp_exec_helper()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-regexp-prototype.c328 return ecma_make_boolean_value (flags & RE_FLAG_STICKY); in ecma_builtin_regexp_prototype_get_sticky()
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c2800 flag = RE_FLAG_STICKY; in lexer_construct_regexp_object()