Home
last modified time | relevance | path

Searched refs:mf1 (Results 1 – 7 of 7) sorted by relevance

/external/libcxxabi/test/
Dcatch_member_function_pointer_01.pass.cpp18 typedef void (A::*mf1)(); typedef
46 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()
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp21.cpp5 void mf1(T);
10 void X<int>::mf1(int i = 17) // expected-error{{default}} in mf1() function in X
25 void mf1(float);
28 void X<float>::mf1(float = 3.14f) // okay in mf1() function in X
Dp18.cpp4 template<class T3> void mf1(T3);
13 void A<int>::B<double>::mf1(T t) { } in mf1() function in A::B
16 void A<long>::B<double>::mf1(T t) { } // expected-error{{does not match}} in mf1() function in A::B
/external/clang/test/SemaCXX/
Dattr-flatten.cpp15 void mf1() __attribute__((flatten));
32 [[gnu::flatten]] void mf1();
Dattr-no-split-stack.cpp15 void mf1() __attribute__((no_split_stack));
32 [[gnu::no_split_stack]] void mf1();
/external/clang/test/CXX/drs/
Ddr3xx.cpp395 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) {}
/external/clang/test/SemaTemplate/
Dmember-template-access-expr.cpp67 float* (X1::*mf1)(int) = &X1::f1; in test_X1() local