Lines Matching refs:Cond
40 void conditional(bool Cond, char16 c16, longlong16 ll16, char16_e c16e,
43 __typeof__(Cond? c16 : c16) *c16p1 = &c16;
44 __typeof__(Cond? ll16 : ll16) *ll16p1 = &ll16;
45 __typeof__(Cond? c16e : c16e) *c16ep1 = &c16e;
46 __typeof__(Cond? ll16e : ll16e) *ll16ep1 = &ll16e;
49 __typeof__(Cond? c16 : c16e) *c16ep2 = &c16e;
50 __typeof__(Cond? c16e : c16) *c16ep3 = &c16e;
51 __typeof__(Cond? ll16 : ll16e) *ll16ep2 = &ll16e;
52 __typeof__(Cond? ll16e : ll16) *ll16ep3 = &ll16e;
55 (void)(Cond? c16 : ll16);
56 (void)(Cond? ll16e : c16e);
57 (void)(Cond? ll16e : c16);
108 void test_implicit_conversions(bool Cond, char16 c16, longlong16 ll16,
184 (void)(Cond? to_c16 : to_c16e);
185 (void)(Cond? to_ll16e : to_ll16);
188 (void)(Cond? to_c16 : to_ll16);
189 (void)(Cond? to_c16e : to_ll16e);