Lines Matching refs:ll16e
10 void f0_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { in f0_test() argument
14 f0(ll16e); in f0_test()
20 void f1_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { in f1_test() argument
24 f1(ll16e); // expected-error{{call to 'f1' is ambiguous}} in f1_test()
30 void f2_test(char16 c16, longlong16 ll16, char16_e c16e, longlong16_e ll16e) { in f2_test() argument
34 f2(ll16e); // expected-error{{no matching function}} in f2_test()
41 longlong16_e ll16e) { in conditional() argument
46 __typeof__(Cond? ll16e : ll16e) *ll16ep1 = &ll16e; in conditional()
51 __typeof__(Cond? ll16 : ll16e) *ll16ep2 = &ll16e; in conditional()
52 __typeof__(Cond? ll16e : ll16) *ll16ep3 = &ll16e; in conditional()
56 (void)(Cond? ll16e : c16e); in conditional()
57 (void)(Cond? ll16e : c16); in conditional()
61 void casts(longlong16 ll16, longlong16_e ll16e) { in casts() argument
67 (void)(char16)ll16e; in casts()
68 (void)(char16_e)ll16e; in casts()
69 (void)(longlong16)ll16e; in casts()
70 (void)(longlong16_e)ll16e; in casts()
77 (void)char16(ll16e); in casts()
78 (void)char16_e(ll16e); in casts()
79 (void)longlong16(ll16e); in casts()
80 (void)longlong16_e(ll16e); in casts()
87 (void)static_cast<char16>(ll16e); in casts()
88 …(void)static_cast<char16_e>(ll16e); // expected-error{{static_cast from 'longlong16_e' (vector of … in casts()
89 (void)static_cast<longlong16>(ll16e); in casts()
90 (void)static_cast<longlong16_e>(ll16e); in casts()
97 (void)reinterpret_cast<char16>(ll16e); in casts()
98 (void)reinterpret_cast<char16_e>(ll16e); in casts()
99 (void)reinterpret_cast<longlong16>(ll16e); in casts()
100 (void)reinterpret_cast<longlong16_e>(ll16e); in casts()
109 char16_e c16e, longlong16_e ll16e, in test_implicit_conversions() argument