Home
last modified time | relevance | path

Searched refs:re_get_value (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/parser/regexp/
Dre-bytecode.c258 re_get_value (const uint8_t **bc_p) /** refence to bytecode pointer */ in re_get_value() function
390 …const uint32_t offset = re_get_value (&bytecode_p) + re_get_bytecode_offset (bytecode_start_p, byt… in re_dump_bytecode()
397 …const uint32_t offset = re_get_value (&bytecode_p) + re_get_bytecode_offset (bytecode_start_p, byt… in re_dump_bytecode()
409 JERRY_DEBUG_MSG ("idx: %u, ", re_get_value (&bytecode_p)); in re_dump_bytecode()
410 JERRY_DEBUG_MSG ("capture count: %u, ", re_get_value (&bytecode_p)); in re_dump_bytecode()
412 const uint32_t qmin = re_get_value (&bytecode_p); in re_dump_bytecode()
416 …const uint32_t offset = re_get_value (&bytecode_p) + re_get_bytecode_offset (bytecode_start_p, byt… in re_dump_bytecode()
429 JERRY_DEBUG_MSG ("idx: %u, ", re_get_value (&bytecode_p)); in re_dump_bytecode()
430 JERRY_DEBUG_MSG ("capture start: %u, ", re_get_value (&bytecode_p)); in re_dump_bytecode()
431 JERRY_DEBUG_MSG ("capture count: %u, ", re_get_value (&bytecode_p)); in re_dump_bytecode()
[all …]
Dre-bytecode.h124 uint32_t re_get_value (const uint8_t **bc_p);
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c631 const uint32_t offset = re_get_value (&bc_p); in ecma_regexp_run()
639 const uint32_t offset = re_get_value (&bc_p); in ecma_regexp_run()
658 const uint32_t group_idx = re_get_value (&bc_p); in ecma_regexp_run()
660 group_p->subcapture_count = re_get_value (&bc_p); in ecma_regexp_run()
666 const uint32_t qmin = re_get_value (&bc_p); in ecma_regexp_run()
675 const uint32_t end_offset = re_get_value (&bc_p); in ecma_regexp_run()
701 const uint32_t group_idx = re_get_value (&bc_p); in ecma_regexp_run()
704 group_p->subcapture_start = re_get_value (&bc_p); in ecma_regexp_run()
705 group_p->subcapture_count = re_get_value (&bc_p); in ecma_regexp_run()
708 const uint32_t qmin = re_get_value (&bc_p); in ecma_regexp_run()
[all …]