Searched refs:input_end_p (Results 1 – 7 of 7) sorted by relevance
178 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 (¤t_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 (¤t_p, re_ctx_p->input_end_p); in re_parse_quantifier()[all …]
40 const lit_utf8_byte_t *input_end_p; /**< end of input pattern */ member
127 re_ctx.input_end_p = pattern_start_p + pattern_start_size; in re_compile_bytecode()
205 lit_utf8_byte_t *input_end_p = input_start_p + input_size; in ecma_builtin_global_object_decode_uri_helper() local212 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() local438 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 …]
475 const lit_utf8_byte_t *const input_end_p = replace_ctx.string_p + replace_ctx.string_size; in ecma_builtin_string_prototype_object_replace() local476 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()
520 && *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 …]
142 const lit_utf8_byte_t *input_end_p; /**< end of input string */ member