Home
last modified time | relevance | path

Searched refs:RE_FLAG_IGNORE_CASE (Results 1 – 6 of 6) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-regexp-prototype.c278 return ecma_make_boolean_value (flags & RE_FLAG_IGNORE_CASE); in ecma_builtin_regexp_prototype_get_ignorecase()
605 if (flags & RE_FLAG_IGNORE_CASE) in ecma_builtin_regexp_prototype_to_string()
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-parser.c897 if (re_ctx_p->flags & RE_FLAG_IGNORE_CASE) in re_class_add_range()
915 if (re_ctx_p->flags & RE_FLAG_IGNORE_CASE) in re_class_add_char()
1351 if (ch <= LIT_UTF8_1_BYTE_CODE_POINT_MAX && (re_ctx_p->flags & RE_FLAG_IGNORE_CASE) == 0) in re_parse_alternative()
1360 if (re_ctx_p->flags & RE_FLAG_IGNORE_CASE) in re_parse_alternative()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.h40 RE_FLAG_IGNORE_CASE = (1u << 2), /**< ECMA-262 v5, 15.10.7.3 */ enumerator
Decma-regexp-object.c83 flag = RE_FLAG_IGNORE_CASE; in ecma_regexp_parse_flags()
154 prop_value_p->value = ecma_make_boolean_value (flags & RE_FLAG_IGNORE_CASE); in ecma_regexp_create_props()
189 prop_value_p->value = ecma_make_boolean_value (flags & RE_FLAG_IGNORE_CASE); in ecma_regexp_update_props()
453 if (flags & RE_FLAG_IGNORE_CASE) in ecma_regexp_canonicalize()
/third_party/jerryscript/jerry-core/api/
Djerry.c87 && (int) RE_FLAG_IGNORE_CASE == (int) JERRY_REGEXP_FLAG_IGNORE_CASE,
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c2788 flag = RE_FLAG_IGNORE_CASE; in lexer_construct_regexp_object()