Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-exceptions.c280 ecma_string_t *arg_string_p; in ecma_raise_standard_error_with_format() local
287 arg_string_p = ecma_get_magic_string (class_name); in ecma_raise_standard_error_with_format()
293 arg_string_p = ecma_get_string_from_value (symbol_desc_value); in ecma_raise_standard_error_with_format()
298 arg_string_p = ecma_op_to_string (arg_val); in ecma_raise_standard_error_with_format()
299 JERRY_ASSERT (arg_string_p != NULL); in ecma_raise_standard_error_with_format()
303 ecma_stringbuilder_append (&builder, arg_string_p); in ecma_raise_standard_error_with_format()
305 ecma_deref_ecma_string (arg_string_p); in ecma_raise_standard_error_with_format()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-string-prototype.c248 ecma_string_t *arg_string_p = ecma_op_to_string (arg); in ecma_builtin_string_prototype_object_locale_compare() local
250 if (JERRY_UNLIKELY (arg_string_p == NULL)) in ecma_builtin_string_prototype_object_locale_compare()
257 if (ecma_compare_ecma_strings_relational (this_string_p, arg_string_p)) in ecma_builtin_string_prototype_object_locale_compare()
261 else if (!ecma_compare_ecma_strings (this_string_p, arg_string_p)) in ecma_builtin_string_prototype_object_locale_compare()
270 ecma_deref_ecma_string (arg_string_p); in ecma_builtin_string_prototype_object_locale_compare()