Searched refs:re_get_char (Results 1 – 3 of 3) sorted by relevance
/third_party/jerryscript/jerry-core/parser/regexp/ |
D | re-bytecode.c | 334 re_get_char (const uint8_t **bc_p, /**< reference to bytecode pointer */ in re_get_char() function 581 … JERRY_DEBUG_MSG ("\\u%04x, ", re_get_char (&bytecode_p, re_ctx_p->flags & RE_FLAG_UNICODE)); in re_dump_bytecode() 587 … const lit_code_point_t begin = re_get_char (&bytecode_p, re_ctx_p->flags & RE_FLAG_UNICODE); in re_dump_bytecode() 588 const lit_code_point_t end = re_get_char (&bytecode_p, re_ctx_p->flags & RE_FLAG_UNICODE); in re_dump_bytecode() 609 … JERRY_DEBUG_MSG ("CHAR \\u%04x\n", re_get_char (&bytecode_p, re_ctx_p->flags & RE_FLAG_UNICODE)); in re_dump_bytecode()
|
D | re-bytecode.h | 123 lit_code_point_t re_get_char (const uint8_t **bc_p, bool unicode);
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-regexp-object.c | 1409 const lit_code_point_t curr = re_get_char (&bc_p, re_ctx_p->flags & RE_FLAG_UNICODE); in ecma_regexp_run() 1419 const lit_code_point_t begin = re_get_char (&bc_p, re_ctx_p->flags & RE_FLAG_UNICODE); in ecma_regexp_run() 1427 const lit_code_point_t end = re_get_char (&bc_p, re_ctx_p->flags & RE_FLAG_UNICODE); in ecma_regexp_run() 1494 const lit_code_point_t ch1 = re_get_char (&bc_p, re_ctx_p->flags & RE_FLAG_UNICODE); in ecma_regexp_run()
|