Lines Matching refs:Catch
53 template <class Throw, class Catch>
58 const bool can_convert = test_conversion<Catch>(throw_ptr); in catch_pointer_test()
62 } catch (Catch catch_ptr) { in catch_pointer_test()
63 Catch catch2 = CreatePointer<Catch>()(); in catch_pointer_test()
91 template <class Throw, class Catch, int level, bool first = false>
94 typedef TestTypes<Catch, first> CatchTypes;
126 template <class Throw, class Catch, bool first>
127 struct generate_tests_imp<Throw, Catch, 0, first> {
129 catch_pointer_test<Throw, Catch>(); in operator ()()
133 template <class Throw, class Catch, int level>
134 struct generate_tests : generate_tests_imp<Throw, Catch, level, true> {};