Home | History | Annotate | Download | only in unit

Lines Matching refs:S1

40 struct S1 { } s1;
43 int f1(S1&);
44 int f2(S1&, S2&);
45 int f1c(const S1&);
46 int f2c(const S1&, const S2&);
48 void vf1(S1&);
49 void vf2(S1&, S2&);
50 void vf1c(const S1&);
51 void vf2c(const S1&, const S2&);
56 int f1(const S1&);
59 void vf1(const S1&);
62 int f1c(const S1&) const;
65 void vf1c(const S1&) const;
78 ptr_fun(f1)(s1);
79 ptr_fun(f2)(s1, s2);
81 ptr_fun(f1c)(s1);
82 ptr_fun(f2c)(s1, s2);
85 ptr_fun(vf1)(s1);
86 ptr_fun(vf2)(s1, s2);
88 ptr_fun(vf1c)(s1);
89 ptr_fun(vf2c)(s1, s2);
95 mem_fun(&Class::f1)(&obj, s1);
99 mem_fun(&Class::vf1)(&obj, s1);
105 mem_fun(&Class::f1c)(&objc, s1);
109 mem_fun(&Class::vf1c)(&objc, s1);
115 mem_fun_ref(&Class::f1)(obj, s1);
119 mem_fun_ref(&Class::vf1)(obj, s1);
124 mem_fun_ref(&Class::f1c)(objc, s1);
128 mem_fun_ref(&Class::vf1c)(objc, s1);
131 int f1(S1&)
134 int f2(S1&, S2&)
137 int f1c(const S1&)
140 int f2c(const S1&, const S2&)
143 void vf1(S1&)
146 void vf2(S1&, S2&)
149 void vf1c(const S1&)
152 void vf2c(const S1&, const S2&)
158 int Class::f1(const S1&)
164 void Class::vf1(const S1&)
170 int Class::f1c(const S1&) const
176 void Class::vf1c(const S1&) const