Home
last modified time | relevance | path

Searched refs:out_of_range (Results 1 – 8 of 8) sorted by relevance

/oneTBB/src/tbb/
H A Dexception.cpp85 …case exception_id::out_of_range: DO_THROW(std::out_of_range, ("Index out of requested size range")… in throw_exception()
88 …case exception_id::invalid_load_factor: DO_THROW(std::out_of_range, ("Invalid hash load factor"));… in throw_exception()
89 case exception_id::invalid_key: DO_THROW(std::out_of_range, ("invalid key")); break; in throw_exception()
/oneTBB/doc/main/tbb_userguide/
H A DExceptions_and_Cancellation.rst62 } catch( out_of_range& ex ) {
63 cout << "out_of_range: " << ex.what() << endl;
71 throws an exception ``std::out_of_range`` during execution of the
/oneTBB/test/tbb/
H A Dtest_tbb_header.cpp161 TestExceptionClassExports( std::out_of_range("test"), tbb::detail::exception_id::out_of_range ); in TestExceptionClassesExports()
163 …TestExceptionClassExports( std::out_of_range("test"), tbb::detail::exception_id::invalid_load_fact… in TestExceptionClassesExports()
165 TestExceptionClassExports( std::out_of_range("test"), tbb::detail::exception_id::invalid_key ); in TestExceptionClassesExports()
H A Dtest_eh_flow_graph.cpp1957 catch(std::out_of_range& ex) { in test_flow_graph_exception0()
/oneTBB/include/oneapi/tbb/detail/
H A D_exception.h34 out_of_range, enumerator
/oneTBB/include/oneapi/tbb/
H A Dconcurrent_vector.h752 tbb::detail::throw_exception(exception_id::out_of_range); in internal_subscript_with_exceptions()
759 tbb::detail::throw_exception(exception_id::out_of_range); in internal_subscript_with_exceptions()
763 tbb::detail::throw_exception(exception_id::out_of_range); in internal_subscript_with_exceptions()
H A Dconcurrent_unordered_map.h121 throw_exception(exception_id::out_of_range); in at()
/oneTBB/test/conformance/
H A Dconformance_concurrent_vector.cpp519 CHECK_THROWS_AS((victim.at(victim.size())), std::out_of_range); in verify_last_segment_allocation_failed()