Lines Matching refs:nargs

30   A() : nargs(0) { }  in A()
31 A(float&) : nargs(1) { } in A()
32 A(int, void*) : nargs(2) { } in A()
39 const int nargs; member
51 B() : nargs(0) { } in B()
52 B(float&) : nargs(1) { } in B()
53 B(int, void*) : nargs(2) { } in B()
56 : nargs(0), alloc_id(a.get_personality()) { } in B()
58 : nargs(1), alloc_id(a.get_personality()) { } in B()
60 : nargs(2), alloc_id(a.get_personality()) { } in B()
62 : nargs(b.nargs), alloc_id(a.get_personality()) { } in B()
73 const int nargs; member
79 C() : nargs(0) { } in C()
80 C(float&) : nargs(1) { } in C()
81 C(int, void*) : nargs(2) { } in C()
84 : nargs(0), alloc_id(a.get_personality()) { } in C()
86 : nargs(1), alloc_id(a.get_personality()) { } in C()
88 : nargs(2), alloc_id(a.get_personality()) { } in C()
90 : nargs(c.nargs), alloc_id(a.get_personality()) { } in C()
94 const int nargs; member
115 VERIFY( a0.nargs == 0 ); in test01()
118 VERIFY( a1.nargs == 1 ); in test01()
121 VERIFY( a2.nargs == 2 ); in test01()
125 VERIFY( b0.nargs == 0 ); in test01()
128 VERIFY( b1.nargs == 1 ); in test01()
131 VERIFY( b2.nargs == 2 ); in test01()
135 VERIFY( c0.nargs == 0 ); in test01()
138 VERIFY( c1.nargs == 1 ); in test01()
141 VERIFY( c2.nargs == 2 ); in test01()
151 VERIFY( b.nargs == 2 ); in test02()
156 VERIFY( c.nargs == 0 ); in test02()
167 VERIFY( ref.nargs == 0 ); in test03()
172 VERIFY( cref.nargs == 0 ); in test03()
222 VERIFY( aa00.first.nargs == 0 ); in test05()
224 VERIFY( aa00.second.nargs == 0 ); in test05()
227 VERIFY( ab00.first.nargs == 0 ); in test05()
229 VERIFY( ab00.second.nargs == 0 ); in test05()
232 VERIFY( bc00.first.nargs == 0 ); in test05()
234 VERIFY( bc00.second.nargs == 0 ); in test05()
237 VERIFY( cb00.first.nargs == 0 ); in test05()
239 VERIFY( cb00.second.nargs == 0 ); in test05()
243 VERIFY( cc00.first.nargs == 0 ); in test05()
245 VERIFY( cc00.second.nargs == 0 ); in test05()
249 VERIFY( aa21.first.nargs == 2 ); in test05()
251 VERIFY( aa21.second.nargs == 1 ); in test05()
254 VERIFY( ab21.first.nargs == 2 ); in test05()
256 VERIFY( ab21.second.nargs == 1 ); in test05()
259 VERIFY( bc11.first.nargs == 1 ); in test05()
261 VERIFY( bc11.second.nargs == 1 ); in test05()
264 VERIFY( cb12.first.nargs == 1 ); in test05()
266 VERIFY( cb12.second.nargs == 2 ); in test05()
270 VERIFY( cc22.first.nargs == 2 ); in test05()
272 VERIFY( cc22.second.nargs == 1 ); in test05()
283 VERIFY( aa00.first.nargs == 0 ); in test06()
285 VERIFY( aa00.second.nargs == 0 ); in test06()
288 VERIFY( ab00.first.nargs == 0 ); in test06()
290 VERIFY( ab00.second.nargs == 0 ); in test06()
293 VERIFY( bc00.first.nargs == 0 ); in test06()
295 VERIFY( bc00.second.nargs == 0 ); in test06()
298 VERIFY( cb00.first.nargs == 0 ); in test06()
300 VERIFY( cb00.second.nargs == 0 ); in test06()
303 VERIFY( cc00.first.nargs == 0 ); in test06()
305 VERIFY( cc00.second.nargs == 0 ); in test06()
309 VERIFY( aa11.first.nargs == 1 ); in test06()
311 VERIFY( aa11.second.nargs == 1 ); in test06()
314 VERIFY( aba1.first.nargs == 0 ); in test06()
316 VERIFY( aba1.second.nargs == 1 ); in test06()
319 VERIFY( bc11.first.nargs == 1 ); in test06()
321 VERIFY( bc11.second.nargs == 1 ); in test06()
324 VERIFY( cb1b.first.nargs == 1 ); in test06()
326 VERIFY( cb1b.second.nargs == 0 ); in test06()
330 VERIFY( cccc.first.nargs == 0 ); in test06()
332 VERIFY( cccc.second.nargs == 0 ); in test06()
338 VERIFY( aa1a.first.nargs == 1 ); in test06()
340 VERIFY( aa1a.second.nargs == 0 ); in test06()
343 VERIFY( ab11.first.nargs == 1 ); in test06()
345 VERIFY( ab11.second.nargs == 1 ); in test06()
348 VERIFY( cb11.first.nargs == 1 ); in test06()
350 VERIFY( cb11.second.nargs == 1 ); in test06()
354 VERIFY( bcbc.first.nargs == 0 ); in test06()
356 VERIFY( bcbc.second.nargs == 0 ); in test06()
360 VERIFY( cc11.first.nargs == 1 ); in test06()
362 VERIFY( cc11.second.nargs == 1 ); in test06()