Home
last modified time | relevance | path

Searched refs:test_exception (Results 1 – 25 of 94) sorted by relevance

1234

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/exception/test/
Derror_info_test.hpp54 test_exception: struct
68 throw test_exception(); in throws_on_copy()
77 test_exception x; in basic_test()
82 test_exception & x ) in basic_test()
94 test_exception x; in basic_test()
99 test_exception const & x ) in basic_test()
111 test_exception x; in exception_safety_test()
118 test_exception & ) in exception_safety_test()
127 throw test_exception(); in throw_empty()
133 throw add_info(test_exception(),test_5(std::string(value))); in throw_test_1()
[all …]
Dexception_test.cpp16 test_exception: class
24 throw test_exception(); in test_throw()
36 test_exception & ) in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.string/format.string.std/
H A Dlwg3720_arg_id_width_precision_allowed_types.pass.cpp36 void test_exception([[maybe_unused]] std::basic_string_view<CharT> fmt, [[maybe_unused]] Args&&... … in test_exception() function
52 test_exception(SV("{:{}}"), 42, true); in test()
53 test_exception(SV("{:{}}"), 42, '0'); in test()
56 test_exception(SV("{:{}}"), 42, L'0'); in test()
59 test_exception(SV("{:{}}"), 42, __int128_t(0)); in test()
60 test_exception(SV("{:{}}"), 42, __uint128_t(0)); in test()
62 test_exception(SV("{:{}}"), 42, 42.0f); in test()
63 test_exception(SV("{:{}}"), 42, 42.0); in test()
64 test_exception(SV("{:{}}"), 42, 42.0l); in test()
67 test_exception(SV("{:0.{}}"), 42.0, true); in test()
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/time/time.zone/time.zone.db/
H A Drules.pass.cpp63 static void test_exception(std::string_view input, [[maybe_unused]] std::string_view what) { in test_exception() function
77 test_exception("R", "corrupt tzdb: expected whitespace"); in test_invalid()
79 test_exception("R ", "corrupt tzdb: expected a string"); in test_invalid()
81 test_exception("R r", "corrupt tzdb: expected whitespace"); in test_invalid()
83 test_exception("R r x", "corrupt tzdb: expected a digit"); in test_invalid()
84 test_exception("R r +", "corrupt tzdb: expected a digit"); in test_invalid()
85 test_exception("R r mx", "corrupt tzdb year: expected 'min' or 'max'"); in test_invalid()
86 test_exception("R r -32768", "corrupt tzdb year: year is less than the minimum"); in test_invalid()
87 test_exception("R r 32768", "corrupt tzdb year: year is greater than the maximum"); in test_invalid()
89 test_exception("R r mix", "corrupt tzdb: expected whitespace"); in test_invalid()
[all …]
H A Dlinks.pass.cpp55 static void test_exception(std::string_view input, [[maybe_unused]] std::string_view what) { in test_exception() function
69 test_exception("L", "corrupt tzdb: expected whitespace"); in test_invalid()
71 test_exception("L ", "corrupt tzdb: expected a string"); in test_invalid()
73 test_exception("L n", "corrupt tzdb: expected whitespace"); in test_invalid()
75 test_exception("L n ", "corrupt tzdb: expected a string"); in test_invalid()
H A Dzones.pass.cpp65 static void test_exception(std::string_view input, [[maybe_unused]] std::string_view what) { in test_exception() function
79 test_exception("Z", "corrupt tzdb: expected whitespace"); in test_invalid()
81 test_exception("Z ", "corrupt tzdb: expected a string"); in test_invalid()
83 test_exception("Z n", "corrupt tzdb: expected whitespace"); in test_invalid()
85 test_exception("Z n ", "corrupt tzdb: expected a digit"); in test_invalid()
86 test_exception("Z n x", "corrupt tzdb: expected a digit"); in test_invalid()
87 test_exception("Z n +", "corrupt tzdb: expected a digit"); in test_invalid()
89 test_exception("Z n 0", "corrupt tzdb: expected whitespace"); in test_invalid()
91 test_exception("Z n 0 ", "corrupt tzdb: expected a string"); in test_invalid()
93 test_exception("Z n 0 r", "corrupt tzdb: expected whitespace"); in test_invalid()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/unordered/test/helpers/
Dexception_test.hpp212 struct test_exception struct
215 test_exception(char const* n) : name(n) {} in test_exception() argument
226 throw test_exception(name); in epoint()
250 } catch (test_exception e) { in exception_safety()
306 void test_exception_caught(test_exception const& e) in test_exception_caught()
338 } catch (test::lightweight::test_exception e) { \
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/test/
Ddevector_test.cpp156 BOOST_TEST_THROWS(Devector(8), test_exception); in test_constructor_n()
169 BOOST_TEST_THROWS(Devector(8, x), test_exception); in test_constructor_n_copy_throwing()
286 BOOST_TEST_THROWS(Devector c(x.begin(), x.end()), test_exception); in test_constructor_forward_range()
319 BOOST_TEST_THROWS(Devector c(xbeg, xend), test_exception); in test_constructor_pointer_range()
351 BOOST_TEST_THROWS(Devector b(a), test_exception); in test_copy_constructor()
487 BOOST_TEST_THROWS(a = b, test_exception); in test_assignment()
632 BOOST_CATCH(const test_exception&) {} in test_il_assignment()
749 BOOST_TEST_THROWS(a.assign(input_begin, input_end), test_exception); in test_assign_input_range()
858 BOOST_TEST_THROWS(a.assign(one, twelve), test_exception); in test_assign_forward_range()
946 BOOST_TEST_THROWS(a.assign(one, twelve), test_exception); in test_assign_pointer_range()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/unordered/test/unordered/
Dnoexcept_tests.cpp45 struct test_exception struct
55 throw test_exception(); in test_throw()
242 } catch (test_exception) { in UNORDERED_AUTO_TEST()
275 } catch (test_exception) { in UNORDERED_AUTO_TEST()
308 } catch (test_exception) { in UNORDERED_AUTO_TEST()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/container.adaptors/container.adaptors.format/
H A Dformat.functions.format.pass.cpp44 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
50 format_tests<char>(test, test_exception); in main()
53 format_tests<wchar_t>(test, test_exception); in main()
H A Dformat.functions.vformat.pass.cpp41 auto test_exception =
58 format_tests<char>(test, test_exception); in main()
61 format_tests<wchar_t>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/
H A Dformat.functions.format.pass.cpp43 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
49 format_tests<char>(test, test_exception); in main()
52 format_tests<wchar_t>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtstr/
H A Dformat.functions.format.pass.cpp42 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
48 format_tests<char>(test, test_exception); in main()
51 format_tests<wchar_t>(test, test_exception); in main()
H A Dformat.functions.vformat.pass.cpp39 auto test_exception =
56 format_tests<char>(test, test_exception); in main()
59 format_tests<wchar_t>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtset/
H A Dformat.functions.format.pass.cpp41 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
47 format_tests<char>(test, test_exception); in main()
50 format_tests<wchar_t>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/sequences/vector.bool/vector.bool.fmt/
H A Dformat.functions.format.pass.cpp43 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
49 format_tests<char>(test, test_exception); in main()
52 format_tests<wchar_t>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.formatter/
H A Dformat.functions.format.pass.cpp42 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
48 format_tests<char>(test, test_exception); in main()
51 format_tests<wchar_t>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.tuple/
H A Dformat.functions.format.pass.cpp44 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
52 run_tests<char>(test, test_exception); in main()
55 run_tests<wchar_t>(test, test_exception); in main()
H A Dformat.functions.vformat.pass.cpp39 auto test_exception =
56 run_tests<char>(test, test_exception); in main()
59 run_tests<wchar_t>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtmap/
H A Dformat.functions.format.pass.cpp41 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
47 format_tests<char>(test, test_exception); in main()
50 format_tests<wchar_t>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.functions/
H A Dformatted_size.pass.cpp36 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
44 format_tests<char, execution_modus::partial>(test, test_exception); in main()
48 format_tests<wchar_t, execution_modus::partial>(test, test_exception); in main()
H A Dformatted_size.locale.pass.cpp39 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
47 format_tests<char, execution_modus::partial>(test, test_exception); in main()
51 format_tests<wchar_t, execution_modus::partial>(test, test_exception); in main()
H A Dformat.locale.pass.cpp43 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
51 format_tests<char, execution_modus::full>(test, test_exception); in main()
55 format_tests<wchar_t, execution_modus::full>(test, test_exception); in main()
H A Dformat.pass.cpp45 auto test_exception = []<class CharT, class... Args>(std::string_view, std::basic_string_view<CharT…
53 format_tests<char, execution_modus::full>(test, test_exception); in main()
57 format_tests<wchar_t, execution_modus::full>(test, test_exception); in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/utilities/format/format.string/format.string.std/
H A Dtest_exception.h17 void test_exception(std::string_view what, const CharT* fmt) { in test_exception() function
41 constexpr void test_exception(std::string_view what, const CharT* fmt) { in test_exception() function
44 detail::test_exception<Parser>(what, fmt); in test_exception()

1234