Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-regexp-prototype.c303 return ecma_make_boolean_value (flags & RE_FLAG_MULTILINE); in ecma_builtin_regexp_prototype_get_multiline()
610 if (flags & RE_FLAG_MULTILINE) in ecma_builtin_regexp_prototype_to_string()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.h41 RE_FLAG_MULTILINE = (1u << 3), /**< ECMA-262 v5, 15.10.7.4 */ enumerator
Decma-regexp-object.c88 flag = RE_FLAG_MULTILINE; in ecma_regexp_parse_flags()
161 prop_value_p->value = ecma_make_boolean_value (flags & RE_FLAG_MULTILINE); in ecma_regexp_create_props()
194 prop_value_p->value = ecma_make_boolean_value (flags & RE_FLAG_MULTILINE); in ecma_regexp_update_props()
1229 …if (!(re_ctx_p->flags & RE_FLAG_MULTILINE) || !lit_char_is_line_terminator (lit_cesu8_peek_prev (s… in ecma_regexp_run()
1243 …if (!(re_ctx_p->flags & RE_FLAG_MULTILINE) || !lit_char_is_line_terminator (lit_cesu8_peek_next (s… in ecma_regexp_run()
/third_party/jerryscript/jerry-core/api/
Djerry.c86 && (int) RE_FLAG_MULTILINE == (int) JERRY_REGEXP_FLAG_MULTILINE
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c2792 flag = RE_FLAG_MULTILINE; in lexer_construct_regexp_object()