Lines Matching refs:Cond
43 void conditional(bool Cond, char16 c16, longlong16 ll16, char16_e c16e, in conditional() argument
46 __typeof__(Cond? c16 : c16) *c16p1 = &c16; in conditional()
47 __typeof__(Cond? ll16 : ll16) *ll16p1 = &ll16; in conditional()
48 __typeof__(Cond? c16e : c16e) *c16ep1 = &c16e; in conditional()
49 __typeof__(Cond? ll16e : ll16e) *ll16ep1 = &ll16e; in conditional()
52 __typeof__(Cond? c16 : c16e) *c16ep2 = &c16e; in conditional()
53 __typeof__(Cond? c16e : c16) *c16ep3 = &c16e; in conditional()
54 __typeof__(Cond? ll16 : ll16e) *ll16ep2 = &ll16e; in conditional()
55 __typeof__(Cond? ll16e : ll16) *ll16ep3 = &ll16e; in conditional()
58 (void)(Cond? c16 : ll16); in conditional()
59 (void)(Cond? ll16e : c16e); in conditional()
60 (void)(Cond? ll16e : c16); in conditional()
114 void test_implicit_conversions(bool Cond, char16 c16, longlong16 ll16, in test_implicit_conversions() argument
190 (void)(Cond? to_c16 : to_c16e); in test_implicit_conversions()
191 (void)(Cond? to_ll16e : to_ll16); in test_implicit_conversions()
194 (void)(Cond? to_c16 : to_ll16); in test_implicit_conversions()
195 (void)(Cond? to_c16e : to_ll16e); in test_implicit_conversions()