Home
last modified time | relevance | path

Searched refs:Opaque1 (Results 1 – 4 of 4) sorted by relevance

/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
Dp13.cpp15 struct Opaque1 {}; struct
26 Opaque1 test0(const int*);
29 Opaque1 test1(int*);
32 Opaque1 test2(int*) const;
35 Opaque1 test3(int*);
40 Opaque1 b = Derived().test0((const int*) 0); in test0()
44 Opaque1 a = Derived().test1((int*) 0); in test1()
50 Opaque1 b = ((const Derived*) 0)->test2((int*) 0); in test2()
54 Opaque1 a = ((Derived*) 0)->test3((int*) 0); in test3()
Dp8.cpp4 struct Opaque1 {}; struct
16 foo(Opaque1()); // expected-error {{no matching function for call}} in test0()
20 void foo(Opaque1);
24 foo(Opaque1()); // expected-error {{no matching function for call}} in test1()
30 foo(Opaque1()); in test2()
47 foo(Opaque1()); // expected-error {{no matching function for call}} in test0()
51 void foo(Opaque1);
55 foo(Opaque1()); // expected-error {{no matching function for call}} in test1()
63 foo(Opaque1()); in test2()
/external/clang/test/CXX/class/class.mfct/class.mfct.non-static/
Dp3.cpp33 struct Opaque1 {}; struct Opaque2 {}; struct Opaque3 {}; struct
36 void foo(Opaque1); // expected-note {{candidate}}
48 A::foo(Opaque1()); in test()
52 …C1::foo(Opaque1()); // expected-error {{call to non-static member function without an object argum… in test()
53 …C2::foo(Opaque1()); // expected-error {{call to non-static member function without an object argum… in test()
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
Dp7.cpp15 struct Opaque1 {}; struct
19 struct B { B(Opaque1); };