Searched refs:regexp_arg (Results 1 - 3 of 3) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-string-prototype.c | 287 ecma_value_t regexp_arg) /**< routine's argument */ in ecma_builtin_string_prototype_object_match() 291 if (!(ecma_is_value_undefined (regexp_arg) || ecma_is_value_null (regexp_arg))) in ecma_builtin_string_prototype_object_match() 294 ecma_value_t matcher = ecma_op_get_method_by_symbol_id (regexp_arg, LIT_GLOBAL_SYMBOL_MATCH); in ecma_builtin_string_prototype_object_match() 307 ecma_value_t result = ecma_op_function_call (matcher_method, regexp_arg, &this_argument, 1); in ecma_builtin_string_prototype_object_match() 331 ecma_value_t new_regexp = ecma_op_create_regexp_from_pattern (regexp_obj_p, regexp_arg, ECMA_VALUE_UNDEFINED); in ecma_builtin_string_prototype_object_match() 352 if (ecma_object_is_regexp_object (regexp_arg)) in ecma_builtin_string_prototype_object_match() 354 return ecma_regexp_match_helper (regexp_arg, this_argument); in ecma_builtin_string_prototype_object_match() 364 ecma_value_t new_regexp = ecma_op_create_regexp_from_pattern (regexp_obj_p, regexp_arg, ECMA_VALUE_UNDEFINED); in ecma_builtin_string_prototype_object_match() 286 ecma_builtin_string_prototype_object_match(ecma_value_t this_argument, ecma_value_t regexp_arg) ecma_builtin_string_prototype_object_match() argument
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-regexp-object.h | 165 ecma_value_t ecma_regexp_search_helper (ecma_value_t regexp_arg, ecma_value_t string_arg);
|
H A D | ecma-regexp-object.c | 1924 ecma_regexp_search_helper (ecma_value_t regexp_arg, /**< regexp argument */ in ecma_regexp_search_helper() argument 1928 if (!ecma_is_value_object (regexp_arg)) in ecma_regexp_search_helper() 1942 ecma_object_t *const regexp_object_p = ecma_get_object_from_value (regexp_arg); in ecma_regexp_search_helper() 1963 const ecma_value_t match = ecma_op_regexp_exec (regexp_arg, string_p); in ecma_regexp_search_helper()
|
Completed in 7 milliseconds