Lines Matching refs:method
10 void method() {} // dev-note {{'method' declared here}} in method() function
14 s.method(); // dev-error {{reference to __host__ function 'method' in __device__ function}} in foo1()
21 …void method(int) {} // expected-note {{candidate function not viable: call to __host__ function fr… in method() function
22 …void method(float) {} // expected-note {{candidate function not viable: call to __host__ function … in method() function
26 s.method(f); // expected-error {{no matching member function}} in foo2()
33 __device__ void method() {} // host-note {{'method' declared here}} in method() function
37 s.method(); // host-error {{reference to __device__ function 'method' in __host__ function}} in foo3()
44 __device__ void method() {} // host-note {{'method' declared here}} in method() function
48 …s.method(); // host-error {{reference to __device__ function 'method' in __host__ __device__ funct… in foo4()
67 void method() {} // dev-note {{'method' declared here}}; in method() function
71 s->method(); // dev-error {{reference to __host__ function 'method' in __device__ function}} in foo6()