Home
last modified time | relevance | path

Searched refs:arg_list_p (Results 1 – 9 of 9) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-parser.c2003 parser_parse_source (const uint8_t *arg_list_p, /**< function argument list */ in parser_parse_source() argument
2023 if (arg_list_p != NULL) in parser_parse_source()
2088 (arg_list_p == NULL) ? "Script" in parser_parse_source()
2094 arg_list_p, in parser_parse_source()
2095 arg_list_p + arg_list_size, in parser_parse_source()
2112 if (arg_list_p == NULL) in parser_parse_source()
2119 context.source_p = arg_list_p; in parser_parse_source()
2120 context.source_end_p = arg_list_p + arg_list_size; in parser_parse_source()
2153 if (arg_list_p != NULL) in parser_parse_source()
2218 JERRY_ASSERT (arg_list_p != NULL || !(context.status_flags & PARSER_ARGUMENTS_NEEDED)); in parser_parse_source()
[all …]
Djs-parser.h189 ecma_value_t parser_parse_script (const uint8_t *arg_list_p, size_t arg_list_size,
Djs-scanner.c2267 const uint8_t *arg_list_p, /**< function argument list */ in scanner_scan_all() argument
2310 if (arg_list_p == NULL) in scanner_scan_all()
2332 context_p->source_p = arg_list_p; in scanner_scan_all()
3236 const uint8_t *source_start_p = (arg_list_p == NULL) ? source_p : arg_list_p; in scanner_scan_all()
Djs-parser-internal.h778 void scanner_scan_all (parser_context_t *context_p, const uint8_t *arg_list_p, const uint8_t *arg_l…
/third_party/jerryscript/jerry-core/vm/
Dvm.h445 … ecma_object_t *lex_env_p, const ecma_value_t *arg_list_p, ecma_length_t arg_list_len);
Dvm.c4444 const ecma_value_t *arg_list_p, /**< arguments list */ in vm_run() argument
4485 vm_init_exec (frame_ctx_p, arg_list_p, arg_list_len); in vm_run()
/third_party/jerryscript/jerry-core/api/
Djerry.c522 const jerry_char_t *arg_list_p, /**< script source */ in jerry_parse_function() argument
559 if (arg_list_p == NULL) in jerry_parse_function()
562 arg_list_p = (const jerry_char_t *) ""; in jerry_parse_function()
565 parse_status = parser_parse_script (arg_list_p, in jerry_parse_function()
585 JERRY_UNUSED (arg_list_p); in jerry_parse_function()
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h368 const jerry_char_t *arg_list_p, size_t arg_list_size,
/third_party/jerryscript/docs/
D02.API-REFERENCE.md1091 const jerry_char_t *arg_list_p, /**< script source */
1100 - `arg_list_p` - argument list of the function (must be a valid UTF8 string).