Home | History | Annotate | Download | only in test

Lines Matching refs:Throw

51 template <class Throw, class Catch>
53 Throw throw_ptr = CreatePointer<Throw>()();
54 // Use the compiler to determine if the exception of type Throw can be
58 throw throw_ptr;
89 template <class Throw, class Catch, int level, bool first = false>
91 typedef TestTypes<Throw, first> ThrowTypes;
124 template <class Throw, class Catch, bool first>
125 struct generate_tests_imp<Throw, Catch, 0, first> {
127 catch_pointer_test<Throw, Catch>();
131 template <class Throw, class Catch, int level>
132 struct generate_tests : generate_tests_imp<Throw, Catch, level, true> {};