Lines Matching full:previous

35 __host__ void hh() {} // expected-note {{previous definition is here}}  in hh()
43 __host__ __device__ int hdh() { return 0; } // expected-note {{previous definition is here}} in hdh()
46 __host__ int hhd() { return 0; } // expected-note {{previous definition is here}} in hhd()
49 // expected-note@-3 {{previous definition is here}}
51 __host__ __device__ int hdd() { return 0; } // expected-note {{previous definition is here}} in hdd()
54 __device__ int dhd() { return 0; } // expected-note {{previous definition is here}} in dhd()
57 // expected-note@-3 {{previous definition is here}}
60 extern "C" __host__ int chh() { return 0; } // expected-note {{previous definition is here}} in chh()
68 extern "C" __host__ __device__ int chhd1() { return 0; } // expected-note {{previous definition is … in chhd1()
71 extern "C" __host__ int chhd2() { return 0; } // expected-note {{previous definition is … in chhd2()
74 // expected-note@-3 {{previous definition is here}}
209 ~d_h() {} // expected-note {{previous declaration is here}} in ~d_h()
227 __host__ ~d_dhhd() {} // expected-note {{previous declaration is here}} in ~d_dhhd()
232 __host__ ~d_hhd() {} // expected-note {{previous declaration is here}} in ~d_hhd()
237 __host__ __device__ ~d_hdh() {} // expected-note {{previous declaration is here}} in ~d_hdh()
242 __device__ ~d_dhd() {} // expected-note {{previous declaration is here}} in ~d_dhd()
247 __host__ __device__ ~d_hdd() {} // expected-note {{previous declaration is here}} in ~d_hdd()
253 void operator delete(void *ptr); // expected-note {{previous declaration is here}}
269 __host__ void operator delete(void *ptr) {} // expected-note {{previous declaration is here}} in operator delete()
274 …__host__ __device__ void operator delete(void *ptr) {} // expected-note {{previous declaration is … in operator delete()
279 __device__ void operator delete(void *ptr) {} // expected-note {{previous declaration is here}} in operator delete()
284 …__host__ __device__ void operator delete(void *ptr) {} // expected-note {{previous declaration is … in operator delete()
295 __global__ void friend_of_g(G &arg) { int x = arg.x; } // expected-note {{previous definition is he… in friend_of_g()