Home
last modified time | relevance | path

Searched refs:regexp_value (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-regexp.c72 ecma_value_t regexp_value = ecma_op_is_regexp (pattern_value); in ecma_builtin_regexp_dispatch_helper() local
74 if (ECMA_IS_VALUE_ERROR (regexp_value)) in ecma_builtin_regexp_dispatch_helper()
76 return regexp_value; in ecma_builtin_regexp_dispatch_helper()
79 bool pattern_is_regexp = regexp_value == ECMA_VALUE_TRUE; in ecma_builtin_regexp_dispatch_helper()
Decma-builtin-string-prototype.c582 ecma_value_t regexp_value) /**< routine's argument */ in ecma_builtin_string_prototype_object_search() argument
585 if (!(ecma_is_value_undefined (regexp_value) || ecma_is_value_null (regexp_value))) in ecma_builtin_string_prototype_object_search()
587 ecma_object_t *obj_p = ecma_get_object_from_value (ecma_op_to_object (regexp_value)); in ecma_builtin_string_prototype_object_search()
605 … ecma_value_t search_result = ecma_op_function_call (search_method, regexp_value, &this_value, 1); in ecma_builtin_string_prototype_object_search()
612 if (ecma_object_is_regexp_object (regexp_value)) in ecma_builtin_string_prototype_object_search()
614 return ecma_regexp_search_helper (regexp_value, this_value); in ecma_builtin_string_prototype_object_search()
626 ecma_string_t *pattern_p = ecma_regexp_read_pattern_str_helper (regexp_value); in ecma_builtin_string_prototype_object_search()