Searched refs:mf1 (Results 1 – 7 of 7) sorted by relevance
18 typedef void (A::*mf1)(); typedef46 catch (mf1) in test1()58 catch (mf1) in test2()73 throw (mf1)0; in test_derived()84 catch (mf1) in test_derived()105 assert(!can_convert<mf1>((dmf1)0)); in test_derived()116 catch (mf1) in test_derived()124 assert(!can_convert<mf1>((dmf2)0)); in test_derived()135 catch (mf1) in test_derived()
5 void mf1(T);10 void X<int>::mf1(int i = 17) // expected-error{{default}} in mf1() function in X25 void mf1(float);28 void X<float>::mf1(float = 3.14f) // okay in mf1() function in X
4 template<class T3> void mf1(T3); 13 void A<int>::B<double>::mf1(T t) { } in mf1() function in A::B16 void A<long>::B<double>::mf1(T t) { } // expected-error{{does not match}} in mf1() function in A::B
15 void mf1() __attribute__((flatten));32 [[gnu::flatten]] void mf1();
15 void mf1() __attribute__((no_split_stack));32 [[gnu::no_split_stack]] void mf1();
395 template<class T3> void mf1(T3);400 …template<> template<> template<class T> void A<int>::B<double>::mf1(T t) {} // expected-error {{do…406 template<class T3> void mf1(T3);411 template<class T> void mf1(T);413 template<> template<> template<class T> void A<int>::B<double>::mf1(T t) {}
67 float* (X1::*mf1)(int) = &X1::f1; in test_X1() local