Home
last modified time | relevance | path

Searched refs:exception_thrown (Results 1 – 3 of 3) sorted by relevance

/oneTBB/test/tbb/
H A Dtest_eh_flow_graph.cpp395 …CHECK_MESSAGE( (!g.exception_thrown()), "Exception flag in flow::graph set but no throw occurred"); in run_one_input_node_test()
403 CHECK_MESSAGE( (!g.exception_thrown()), "Reset didn't clear exception_thrown()"); in run_one_input_node_test()
537 … CHECK_MESSAGE( (g.exception_thrown() || okayNoExceptionsCaught), "Exception not caught by graph"); in run_one_functype_node_test()
544 …CHECK_MESSAGE( (!g.exception_thrown()), "Exception flag in flow::graph set but no throw occurred"); in run_one_functype_node_test()
835 … CHECK_MESSAGE( (g.exception_thrown() || okayNoExceptionsCaught), "Exception not caught by graph"); in run_one_continue_node_test()
949 … CHECK_MESSAGE( (g.exception_thrown() || okayNoExceptionsCaught), "Exception not caught by graph"); in run_one_buffer_node_test()
1083 … CHECK_MESSAGE( (g.exception_thrown() || okayNoExceptionsCaught), "Exception not caught by graph"); in run_one_sequencer_node_test()
1206 … CHECK_MESSAGE( (g.exception_thrown() || okayNoExceptionsCaught), "Exception not caught by graph"); in run_one_priority_queue_node_test()
1950 CHECK_MESSAGE( (!g.exception_thrown()), "exception_thrown flag already set"); in test_flow_graph_exception0()
1965 CHECK_MESSAGE( (g.exception_thrown()), "Exception not intercepted"); in test_flow_graph_exception0()
[all …]
H A Dtest_flow_graph_priorities.cpp828 CHECK(g.exception_thrown()); in test()
/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_impl.h332 bool exception_thrown() { return caught_exception; } in exception_thrown() function