Lines Matching refs:Cond
53 void conditional(bool Cond, char16 c16, longlong16 ll16, char16_e c16e, in conditional() argument
56 __typeof__(Cond? c16 : c16) *c16p1 = &c16; in conditional()
57 __typeof__(Cond? ll16 : ll16) *ll16p1 = &ll16; in conditional()
58 __typeof__(Cond? c16e : c16e) *c16ep1 = &c16e; in conditional()
59 __typeof__(Cond? ll16e : ll16e) *ll16ep1 = &ll16e; in conditional()
62 __typeof__(Cond? c16 : c16e) *c16ep2 = &c16e; in conditional()
63 __typeof__(Cond? c16e : c16) *c16ep3 = &c16e; in conditional()
64 __typeof__(Cond? ll16 : ll16e) *ll16ep2 = &ll16e; in conditional()
65 __typeof__(Cond? ll16e : ll16) *ll16ep3 = &ll16e; in conditional()
68 (void)(Cond? c16 : ll16); in conditional()
69 (void)(Cond? ll16e : c16e); in conditional()
70 (void)(Cond? ll16e : c16); in conditional()
136 void test_implicit_conversions(bool Cond, char16 c16, longlong16 ll16, in test_implicit_conversions() argument
221 (void)(Cond? to_c16 : to_c16e); in test_implicit_conversions()
222 (void)(Cond? to_ll16e : to_ll16); in test_implicit_conversions()
225 (void)(Cond? to_c16 : to_ll16); in test_implicit_conversions()
226 (void)(Cond? to_c16e : to_ll16e); in test_implicit_conversions()