Home
last modified time | relevance | path

Searched refs:throw (Results 1 – 14 of 14) sorted by relevance

/oneTBB/doc/main/reference/scalable_memory_pools/
H A Dmemory_pool_allocator_cls.rst53 explicit memory_pool_allocator(memory_pool &pool) throw();
54 explicit memory_pool_allocator(fixed_pool &pool) throw();
55 memory_pool_allocator(const memory_pool_allocator& src) throw();
57 memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw();
62 size_type max_size() const throw();
76 memory_pool_allocator(memory_pool &pool) throw();
77 memory_pool_allocator(fixed_pool &pool) throw();
78 memory_pool_allocator(const memory_pool_allocator& src) throw();
80 memory_pool_allocator(const memory_pool_allocator<U>& src) throw();
/oneTBB/include/oneapi/tbb/
H A Dmemory_pool.h100 explicit memory_pool_allocator(pool_type &pool) throw() : my_pool(&pool) {} in memory_pool_allocator()
101 memory_pool_allocator(const memory_pool_allocator& src) throw() : my_pool(src.my_pool) {} in throw() function
103 memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw() : my_pool(src.my_pool) {} in memory_pool_allocator()
120 size_type max_size() const throw() { in max_size()
152 explicit memory_pool_allocator( pool_type &pool) throw() : my_pool(&pool) {} in memory_pool_allocator()
153 memory_pool_allocator( const memory_pool_allocator& src) throw() : my_pool(src.my_pool) {} in throw() function
155 memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw() : my_pool(src.my_pool) {} in memory_pool_allocator()
H A Dscalable_allocator.h205 throw e; in throw_exception()
/oneTBB/test/common/
H A Dexception_handling.h105 const char* what() const throw() override { return my_description; } in what()
122 throw test_exception(EXCEPTION_DESCR); in ThrowTestException()
142 throw test_exception(EXCEPTION_DESCR); in ThrowTestException()
152 throw solitary_test_exception(EXCEPTION_DESCR); in ThrowTestException()
160 throw solitary_test_exception(EXCEPTION_DESCR); in ThrowTestException()
H A Dtest.h26 #define TBB_TEST_THROW(x) throw x
H A Dcontainers_common.h139 throw error_code();
H A Dgraph_utils.h843 throw Threshold;
850 throw Threshold;
H A Ddoctest.h1863 throw; // lgtm [cpp/rethrow-no-exception]
3338 throw e;
4155 throw TestFailureException(); // NOLINT(hicpp-exception-baseclass)
4536 throw;
/oneTBB/doc/main/tbb_userguide/
H A Dcatching_exceptions.rst25 throw i;
54 throw i;
H A DCancellation_Without_An_Exception.rst7 To cancel an algorithm but not throw an exception, use the expression ``current_context()->cancel_g…
H A DExceptions_and_Cancellation.rst30 oneTBB might throw the original exception. So be sure your code can
H A DCancellation_and_Nested_Parallelism.rst109 throw "oops";
/oneTBB/doc/main/reference/
H A Dscalable_memory_pools.rst20 * - \ ``~P() throw();``
/oneTBB/src/tbb/
H A Dtask_dispatcher.h359 do_throw_noexcept([] { throw; }); in local_wait_for_all()