Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching full:void

5 // CHECK: define void @_Z1f1XS_(
6 void f(X, X) { }
8 // CHECK: define void @_Z1fR1XS0_(
9 void f(X&, X&) { }
11 // CHECK: define void @_Z1fRK1XS1_(
12 void f(const X&, const X&) { }
14 typedef void T();
17 // CHECK: define void @_Z1fPFvvEM1SFvvE(
18 void f(T*, T (S::*)) {}
25 // CHECK: define void @_Z1fN1A1AENS_1BE(
26 void f(A::A a, A::B b) { }
32 // CHECK: define void @_Z1fN1C1DERS_PS_S1_(
33 void f(C::D, C&, C*, C&) { }
40 template <typename T> void f1(typename V<T>::U, V<T>) { }
43 template void f1<int>(int, V<int>);
45 template <typename T> void f2(V<T>, typename V<T>::U) { }
48 template void f2<int>(V<int>, int);
52 template<typename T> void ft3(S1<T>, S1<char>) { }
55 template void ft3<int>(S1<int>, S1<char>);
60 void f(const char*, const char*) {}
68 void f(C&) { }
77 void f(void (B::*)(), A, A) { }
80 void f(void (B::*)(), A, A, void (B::*)(A), void (A::*)()) { }