Home
last modified time | relevance | path

Searched refs:input_end_p (Results 1 – 7 of 7) sorted by relevance

/third_party/jerryscript/jerry-core/parser/regexp/
Dre-parser.c178 if (re_ctx_p->input_curr_p < re_ctx_p->input_end_p in re_parse_lazy_char()
197 JERRY_ASSERT (re_ctx_p->input_curr_p < re_ctx_p->input_end_p); in re_parse_octal()
202 if (re_ctx_p->input_curr_p < re_ctx_p->input_end_p in re_parse_octal()
208 if (re_ctx_p->input_curr_p < re_ctx_p->input_end_p in re_parse_octal()
250 if (re_ctx_p->input_curr_p < re_ctx_p->input_end_p) in re_parse_quantifier()
287 if (current_p >= re_ctx_p->input_end_p) in re_parse_quantifier()
297 qmin = lit_parse_decimal (&current_p, re_ctx_p->input_end_p); in re_parse_quantifier()
299 if (current_p >= re_ctx_p->input_end_p) in re_parse_quantifier()
311 if (current_p >= re_ctx_p->input_end_p) in re_parse_quantifier()
318 qmax = lit_parse_decimal (&current_p, re_ctx_p->input_end_p); in re_parse_quantifier()
[all …]
Dre-compiler-context.h40 const lit_utf8_byte_t *input_end_p; /**< end of input pattern */ member
Dre-compiler.c127 re_ctx.input_end_p = pattern_start_p + pattern_start_size; in re_compile_bytecode()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-global.c205 lit_utf8_byte_t *input_end_p = input_start_p + input_size; in ecma_builtin_global_object_decode_uri_helper() local
212 while (input_char_p < input_end_p) in ecma_builtin_global_object_decode_uri_helper()
226 uint32_t hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper()
270 while (input_char_p < input_end_p) in ecma_builtin_global_object_decode_uri_helper()
279 uint32_t hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper()
331 if (input_char_p >= input_end_p || *input_char_p != '%') in ecma_builtin_global_object_decode_uri_helper()
338 hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper()
431 const lit_utf8_byte_t *input_end_p = input_start_p + input_size; in ecma_builtin_global_object_encode_uri_helper() local
438 while (input_char_p < input_end_p) in ecma_builtin_global_object_encode_uri_helper()
452 if (input_char_p == input_end_p) in ecma_builtin_global_object_encode_uri_helper()
[all …]
Decma-builtin-string-prototype.c475 const lit_utf8_byte_t *const input_end_p = replace_ctx.string_p + replace_ctx.string_size; in ecma_builtin_string_prototype_object_replace() local
476 const lit_utf8_byte_t *const loop_end_p = input_end_p - search_size; in ecma_builtin_string_prototype_object_replace()
534 (lit_utf8_size_t) (input_end_p - match_end_p)); in ecma_builtin_string_prototype_object_replace()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c520 && *str_p < re_ctx_p->input_end_p) in ecma_regexp_advance()
1213 if (str_curr_p + capture_size > re_ctx_p->input_end_p in ecma_regexp_run()
1238 if (str_curr_p >= re_ctx_p->input_end_p) in ecma_regexp_run()
1255 const bool is_wordchar_right = ((str_curr_p < re_ctx_p->input_end_p) in ecma_regexp_run()
1269 const bool is_wordchar_right = ((str_curr_p < re_ctx_p->input_end_p) in ecma_regexp_run()
1367 if (str_curr_p >= re_ctx_p->input_end_p) in ecma_regexp_run()
1384 if (str_curr_p >= re_ctx_p->input_end_p) in ecma_regexp_run()
1456 if (str_curr_p >= re_ctx_p->input_end_p) in ecma_regexp_run()
1461 … const lit_code_point_t cp = ecma_regexp_unicode_advance (&str_curr_p, re_ctx_p->input_end_p); in ecma_regexp_run()
1473 if (str_curr_p >= re_ctx_p->input_end_p) in ecma_regexp_run()
[all …]
Decma-regexp-object.h142 const lit_utf8_byte_t *input_end_p; /**< end of input string */ member