Home
last modified time | relevance | path

Searched refs:end_p (Results 1 – 25 of 29) sorted by relevance

12

/third_party/boost/libs/spirit/classic/test/
Dpost_skips.cpp39 info = parse(test1, str_p("12345") >> end_p, blank_p); in parse_tests()
41 info = parse(test2, str_p("12345") >> end_p, blank_p); in parse_tests()
45 info = parse(test1, str_p("12345") >> !end_p, blank_p); in parse_tests()
47 info = parse(test2, str_p("12345") >> !end_p, blank_p); in parse_tests()
66 info = ast_parse(test1, str_p("12345") >> end_p, blank_p); in ast_parse_tests()
68 info = ast_parse(test2, str_p("12345") >> end_p, blank_p); in ast_parse_tests()
72 info = ast_parse(test1, str_p("12345") >> !end_p, blank_p); in ast_parse_tests()
74 info = ast_parse(test2, str_p("12345") >> !end_p, blank_p); in ast_parse_tests()
93 info = pt_parse(test1, str_p("12345") >> end_p, blank_p); in pt_parse_tests()
95 info = pt_parse(test2, str_p("12345") >> end_p, blank_p); in pt_parse_tests()
[all …]
Dbug_fixes.cpp148 parse(" aaaaaaaaa ", *ch_p('a') >> end_p, space_p).full in bug_005()
152 parse(" aaaaaaaaa ", lexeme_d[*ch_p('a')] >> end_p, space_p).full in bug_005()
162 parse(" aaaaaaaaa ", *ch_p('a') >> end_p, ch_p(' ')).full in bug_005()
166 parse(" aaaaaaaaa ", lexeme_d[*ch_p('a')] >> end_p, ch_p(' ')).full in bug_005()
208 BOOST_TEST(parse("test ", str_p("test") >> end_p, space_p).full); in bug_007()
209 BOOST_TEST(pt_parse("test ", str_p("test") >> end_p, space_p).full); in bug_007()
210 BOOST_TEST(ast_parse("test ", str_p("test") >> end_p, space_p).full); in bug_007()
Dtree_to_xml.cpp127 calc >> end_p, space_p); in test()
146 calc >> end_p, space_p); in test()
Dprimitives_tests.cpp103 pi = parse("", end_p); in primitives_tests()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-exceptions.c263 const char *end_p = format; in ecma_raise_standard_error_with_format() local
269 while (*end_p) in ecma_raise_standard_error_with_format()
271 if (*end_p == '%') in ecma_raise_standard_error_with_format()
274 if (end_p > start_p) in ecma_raise_standard_error_with_format()
276 …ingbuilder_append_raw (&builder, (lit_utf8_byte_t *) start_p, (lit_utf8_size_t) (end_p - start_p)); in ecma_raise_standard_error_with_format()
307 start_p = end_p + 1; in ecma_raise_standard_error_with_format()
310 end_p++; in ecma_raise_standard_error_with_format()
316 if (start_p < end_p) in ecma_raise_standard_error_with_format()
318 …ecma_stringbuilder_append_raw (&builder, (lit_utf8_byte_t *) start_p, (lit_utf8_size_t) (end_p - s… in ecma_raise_standard_error_with_format()
Decma-regexp-object.h88 const lit_utf8_byte_t *end_p; /**< capture end pointer */ member
152 …_point_t ecma_regexp_unicode_advance (const lit_utf8_byte_t **str_p, const lit_utf8_byte_t *end_p);
Decma-regexp-object.c542 const lit_utf8_byte_t *end_p) /**< string end pointer */ in ecma_regexp_unicode_advance() argument
549 && current_p < end_p) in ecma_regexp_unicode_advance()
621 re_ctx_p->captures_p[RE_GLOBAL_CAPTURE].end_p = str_curr_p; in ecma_regexp_run()
663 const lit_utf8_byte_t *const saved_end_p = group_p->end_p; in ecma_regexp_run()
667 group_p->end_p = NULL; in ecma_regexp_run()
693 group_p->end_p = saved_end_p; in ecma_regexp_run()
776 group_p->end_p = str_curr_p; in ecma_regexp_run()
813 group_p->end_p = str_curr_p; in ecma_regexp_run()
949 group_p->end_p = str_curr_p; in ecma_regexp_run()
1205 if (!ECMA_RE_IS_CAPTURE_DEFINED (capture_p) || capture_p->end_p <= capture_p->begin_p) in ecma_regexp_run()
[all …]
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-conversion.c295 const lit_utf8_byte_t *end_p, /**< end of utf-8 string */ in ecma_utf8_string_to_number_by_radix() argument
306 for (const lit_utf8_byte_t * iter_p = str_p; iter_p <= end_p; iter_p++) in ecma_utf8_string_to_number_by_radix()
326 for (const lit_utf8_byte_t * iter_p = str_p; iter_p <= end_p; iter_p++) in ecma_utf8_string_to_number_by_radix()
377 const lit_utf8_byte_t *end_p = str_p + (str_size - 1); in ecma_utf8_string_to_number() local
384 if (end_p >= str_p + 2 in ecma_utf8_string_to_number()
391 return ecma_utf8_string_to_number_by_radix (str_p + 2, end_p, 16); in ecma_utf8_string_to_number()
395 return ecma_utf8_string_to_number_by_radix (str_p + 2, end_p, 8); in ecma_utf8_string_to_number()
399 return ecma_utf8_string_to_number_by_radix (str_p + 2, end_p, 2); in ecma_utf8_string_to_number()
421 if (str_p > end_p) in ecma_utf8_string_to_number()
431 if ((end_p - str_p) == (8 - 1) && memcmp (infinity_zt_str_p, str_p, 8) == 0) in ecma_utf8_string_to_number()
[all …]
Decma-helpers-number.c739 const lit_utf8_byte_t *end_p = string_end_p; in ecma_number_parse_int() local
802 && ((end_p - start_p) >= 2) in ecma_number_parse_int()
841 end_p = --string_curr_p; in ecma_number_parse_int()
847 if (end_p == start_p) in ecma_number_parse_int()
856 string_curr_p = end_p; in ecma_number_parse_int()
916 const lit_utf8_byte_t *end_p = str_end_p; in ecma_number_parse_float() local
986 end_p = str_curr_p; in ecma_number_parse_float()
1016 end_p = str_curr_p; in ecma_number_parse_float()
1055 end_p = str_curr_p; in ecma_number_parse_float()
1060 if (start_p == end_p) in ecma_number_parse_float()
[all …]
Decma-helpers-string.c1106 const lit_utf8_byte_t *end_p = start_p; in ecma_substring_copy_to_cesu8_buffer() local
1110 lit_utf8_size_t code_unit_size = lit_get_unicode_char_size_by_utf8_first_byte (*end_p); in ecma_substring_copy_to_cesu8_buffer()
1117 end_p += code_unit_size; in ecma_substring_copy_to_cesu8_buffer()
2329 const lit_utf8_byte_t *end_p = start_p; in ecma_string_substr() local
2332 end_p += lit_get_unicode_char_size_by_utf8_first_byte (*end_p); in ecma_string_substr()
2335 ecma_string_p = ecma_new_ecma_string_from_utf8 (start_p, (lit_utf8_size_t) (end_p - start_p)); in ecma_string_substr()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-json.c84 const lit_utf8_byte_t *end_p; /**< end of the string processed by the parser */ member
103 const lit_utf8_byte_t *end_p = token_p->end_p; in ecma_builtin_json_parse_string() local
110 if (current_p >= end_p || *current_p <= 0x1f) in ecma_builtin_json_parse_string()
129 if (current_p >= end_p) in ecma_builtin_json_parse_string()
177 …uint32_t hex_value = lit_char_hex_lookup (current_p + 1, end_p, ECMA_JSON_HEX_ESCAPE_SEQUENCE_LENG… in ecma_builtin_json_parse_string()
219 const lit_utf8_byte_t *end_p = token_p->end_p; in ecma_builtin_json_parse_number() local
222 JERRY_ASSERT (current_p < end_p); in ecma_builtin_json_parse_number()
229 if (current_p >= end_p) in ecma_builtin_json_parse_number()
238 if (current_p < end_p && lit_char_is_decimal_digit (*current_p)) in ecma_builtin_json_parse_number()
249 while (current_p < end_p && lit_char_is_decimal_digit (*current_p)); in ecma_builtin_json_parse_number()
[all …]
/third_party/boost/boost/math/interpolators/
Dcardinal_cubic_b_spline.hpp36 …cardinal_cubic_b_spline(const BidiIterator f, BidiIterator end_p, Real left_endpoint, Real step_si…
62 cardinal_cubic_b_spline<Real>::cardinal_cubic_b_spline(BidiIterator f, BidiIterator end_p, Real lef… in cardinal_cubic_b_spline() argument
63 …e) : m_imp(std::make_shared<detail::cardinal_cubic_b_spline_imp<Real>>(f, end_p, left_endpoint, st… in cardinal_cubic_b_spline()
Dcubic_b_spline.hpp39 cubic_b_spline(const BidiIterator f, BidiIterator end_p, Real left_endpoint, Real step_size,
65 cubic_b_spline<Real>::cubic_b_spline(BidiIterator f, BidiIterator end_p, Real left_endpoint, Real s… in cubic_b_spline() argument
66 …derivative) : m_imp(std::make_shared<detail::cubic_b_spline_imp<Real>>(f, end_p, left_endpoint, st… in cubic_b_spline()
/third_party/jerryscript/tests/unit-core/
Dtest-strings.c127 const lit_utf8_byte_t *end_p = cesu8_string + cesu8_string_size; in main() local
132 while (curr_p < end_p) in main()
154 curr_p = (lit_utf8_byte_t *) end_p; in main()
165 while (curr_p < end_p) in main()
/third_party/boost/tools/quickbook/src/
Dcode_snippet.cpp150 "#->" >> *cl::blank_p >> (cl::eol_p | cl::end_p) in definition()
168 (cl::eol_p | cl::end_p) in definition()
182 >> (cl::eol_p | cl::end_p) in definition()
297 (cl::eol_p | cl::end_p) in definition()
311 >> (cl::eol_p | cl::end_p) in definition()
Dmain_grammar.cpp555 | cl::end_p in init_main()
615 >> (cl::eol_p | cl::end_p) in init_main()
901 >> (cl::space_p | cl::punct_p | cl::end_p) in init_main()
932 >> (cl::space_p | cl::punct_p | cl::end_p) in init_main()
991 >> *( ~cl::eps_p(space >> cl::end_p | comment) in init_main()
1050 >> cl::end_p in init_main()
Ddoc_info_grammar.cpp160 >> (eol | cl::end_p) in init_doc_info()
Dsyntax_highlight.cpp456 (cl::eol_p | cl::end_p) in definition()
/third_party/boost/boost/math/interpolators/detail/
Dcubic_b_spline_detail.hpp27 cubic_b_spline_imp(BidiIterator f, BidiIterator end_p, Real left_endpoint, Real step_size,
106 cubic_b_spline_imp<Real>::cubic_b_spline_imp(BidiIterator f, BidiIterator end_p, Real left_endpoint… in cubic_b_spline_imp() argument
111 std::size_t length = end_p - f; in cubic_b_spline_imp()
Dcardinal_cubic_b_spline_detail.hpp27 …cardinal_cubic_b_spline_imp(BidiIterator f, BidiIterator end_p, Real left_endpoint, Real step_size,
106 cardinal_cubic_b_spline_imp<Real>::cardinal_cubic_b_spline_imp(BidiIterator f, BidiIterator end_p, … in cardinal_cubic_b_spline_imp() argument
111 std::size_t length = end_p - f; in cardinal_cubic_b_spline_imp()
/third_party/boost/libs/property_tree/examples/
Dinfo_grammar_spirit.cpp43 info = *entry >> end_p; in definition()
/third_party/boost/boost/wave/grammars/
Dcpp_has_include_grammar.hpp86 >> end_p in definition()
/third_party/python/Modules/
Dmmapmodule.c290 const char *p, *start_p, *end_p; in mmap_gfind() local
310 end_p = self->data + end; in mmap_gfind()
312 for (p = (reverse ? end_p - len : start_p); in mmap_gfind()
313 (p >= start_p) && (p + len <= end_p); p += sign) { in mmap_gfind()
/third_party/boost/boost/spirit/home/classic/utility/
Dconfix.hpp283 eol_p | end_p in operator ()()
/third_party/boost/boost/spirit/home/classic/core/primitives/
Dprimitives.hpp645 end_parser const end_p = end_parser(); variable

12