Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:void

3   void f() __attribute__((deprecated));
4 void g(A* a);
5 void h(A* a) __attribute__((deprecated));
10 void A::g(A* a)
15 (void)b; // expected-warning{{'b' is deprecated}}
16 (void)a->b; // expected-warning{{'b' is deprecated}}
19 void A::h(A* a)
24 (void)b;
25 (void)a->b;
29 virtual void f() __attribute__((deprecated));
30 void g();
33 void B::g() {
39 virtual void f();
40 void g();
43 void C::g() {
49 void f(B* b, C *c) {
59 virtual void f() __attribute__((deprecated));
62 void D::f() { }
64 void f(D* d) {
71 void foo(int) __attribute__((deprecated));
72 void test1() { foo(10); } // expected-warning {{deprecated}}
73 void foo(short) __attribute__((deprecated));
74 void test2(short s) { foo(s); } // expected-warning {{deprecated}}
75 void foo(long);
76 void test3(long l) { foo(l); }
78 friend void foo(A*) __attribute__((deprecated));
80 void test4(A *a) { foo(a); } // expected-warning {{deprecated}}
84 void foo(const Foo &f) __attribute__((deprecated));
86 void test5() {
94 void foo(int) __attribute__((deprecated));
95 void foo(long);
96 static void bar(int) __attribute__((deprecated));
97 static void bar(long);
99 void test2(int i, long l);
101 void test1(int i, long l) {
111 void A::test2(int i, long l) {
122 void operator*(const A &);
123 void operator*(int) __attribute__((deprecated));
124 void operator-(const A &) const;
126 void operator+(const A &, const A &);
127 void operator+(const A &, int) __attribute__((deprecated));
128 void operator-(const A &, int) __attribute__((deprecated));
130 void test() {
144 typedef void (*intfn)(int);
145 typedef void (*unintfn)(unsigned);
148 void operator ()(A &) __attribute__((deprecated));
149 void operator ()(const A &);
152 void test() {
169 void test1(A a) {
174 void foo(int);
175 void foo(void*);
176 void bar(long);
177 void bar(void*);
178 void test2(A a) {
199 void testA() {
208 void testB() {
219 void testC() {
230 void testD() {