Lines Matching refs:T

51 template <class T>
53 std::cmp_equal(T(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_equal'}} in test()
54 …std::cmp_equal(T(), int()); // expected-error 10-11 {{no matching function for call to 'cmp_equal'… in test()
55 …std::cmp_equal(int(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_equal'… in test()
56 …std::cmp_not_equal(T(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_not_… in test()
57 …std::cmp_not_equal(T(), int()); // expected-error 10-11 {{no matching function for call to 'cmp_no… in test()
58 …std::cmp_not_equal(int(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_no… in test()
59 std::cmp_less(T(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test()
60 std::cmp_less(T(), int()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test()
61 std::cmp_less(int(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test()
62 …std::cmp_less_equal(T(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_les… in test()
63 …std::cmp_less_equal(T(), int()); // expected-error 10-11 {{no matching function for call to 'cmp_l… in test()
64 …std::cmp_less_equal(int(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_l… in test()
65 …std::cmp_greater(T(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_greate… in test()
66 …std::cmp_greater(T(), int()); // expected-error 10-11 {{no matching function for call to 'cmp_grea… in test()
67 …std::cmp_greater(int(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_grea… in test()
68 …std::cmp_greater_equal(T(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_… in test()
69 …std::cmp_greater_equal(T(), int()); // expected-error 10-11 {{no matching function for call to 'cm… in test()
70 …std::cmp_greater_equal(int(), T()); // expected-error 10-11 {{no matching function for call to 'cm… in test()
71 std::in_range<T>(int()); // expected-error 10-11 {{no matching function for call to 'in_range'}} in test()
72 std::in_range<int>(T()); // expected-error 10-11 {{no matching function for call to 'in_range'}} in test()
75 template <class T>
77 std::cmp_equal(T(), T()); // expected-error 1 {{no matching function for call to 'cmp_equal'}} in test_char8t()
78 std::cmp_equal(T(), int()); // expected-error 1 {{no matching function for call to 'cmp_equal'}} in test_char8t()
79 std::cmp_equal(int(), T()); // expected-error 1 {{no matching function for call to 'cmp_equal'}} in test_char8t()
80 …std::cmp_not_equal(T(), T()); // expected-error 1 {{no matching function for call to 'cmp_not_equa… in test_char8t()
81 …std::cmp_not_equal(T(), int()); // expected-error 1 {{no matching function for call to 'cmp_not_eq… in test_char8t()
82 …std::cmp_not_equal(int(), T()); // expected-error 1 {{no matching function for call to 'cmp_not_eq… in test_char8t()
83 std::cmp_less(T(), T()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t()
84 std::cmp_less(T(), int()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t()
85 std::cmp_less(int(), T()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t()
86 …std::cmp_less_equal(T(), T()); // expected-error 1 {{no matching function for call to 'cmp_less_eq… in test_char8t()
87 …std::cmp_less_equal(T(), int()); // expected-error 1 {{no matching function for call to 'cmp_less_… in test_char8t()
88 …std::cmp_less_equal(int(), T()); // expected-error 1 {{no matching function for call to 'cmp_less_… in test_char8t()
89 std::cmp_greater(T(), T()); // expected-error 1 {{no matching function for call to 'cmp_greater'}} in test_char8t()
90 …std::cmp_greater(T(), int()); // expected-error 1 {{no matching function for call to 'cmp_greater'… in test_char8t()
91 …std::cmp_greater(int(), T()); // expected-error 1 {{no matching function for call to 'cmp_greater'… in test_char8t()
92 …std::cmp_greater_equal(T(), T()); // expected-error 1 {{no matching function for call to 'cmp_grea… in test_char8t()
93 …std::cmp_greater_equal(T(), int()); // expected-error 1 {{no matching function for call to 'cmp_gr… in test_char8t()
94 …std::cmp_greater_equal(int(), T()); // expected-error 1 {{no matching function for call to 'cmp_gr… in test_char8t()
95 std::in_range<T>(int()); // expected-error 1 {{no matching function for call to 'in_range'}} in test_char8t()
96 std::in_range<int>(T()); // expected-error 1 {{no matching function for call to 'in_range'}} in test_char8t()
100 template <class T>
102 std::cmp_equal(T(), T()); // expected-error 2 {{no matching function for call to 'cmp_equal'}} in test_uchars()
103 std::cmp_equal(T(), int()); // expected-error 2 {{no matching function for call to 'cmp_equal'}} in test_uchars()
104 std::cmp_equal(int(), T()); // expected-error 2 {{no matching function for call to 'cmp_equal'}} in test_uchars()
105 …std::cmp_not_equal(T(), T()); // expected-error 2 {{no matching function for call to 'cmp_not_equa… in test_uchars()
106 …std::cmp_not_equal(T(), int()); // expected-error 2 {{no matching function for call to 'cmp_not_eq… in test_uchars()
107 …std::cmp_not_equal(int(), T()); // expected-error 2 {{no matching function for call to 'cmp_not_eq… in test_uchars()
108 std::cmp_less(T(), T()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars()
109 std::cmp_less(T(), int()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars()
110 std::cmp_less(int(), T()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars()
111 …std::cmp_less_equal(T(), T()); // expected-error 2 {{no matching function for call to 'cmp_less_eq… in test_uchars()
112 …std::cmp_less_equal(T(), int()); // expected-error 2 {{no matching function for call to 'cmp_less_… in test_uchars()
113 …std::cmp_less_equal(int(), T()); // expected-error 2 {{no matching function for call to 'cmp_less_… in test_uchars()
114 std::cmp_greater(T(), T()); // expected-error 2 {{no matching function for call to 'cmp_greater'}} in test_uchars()
115 …std::cmp_greater(T(), int()); // expected-error 2 {{no matching function for call to 'cmp_greater'… in test_uchars()
116 …std::cmp_greater(int(), T()); // expected-error 2 {{no matching function for call to 'cmp_greater'… in test_uchars()
117 …std::cmp_greater_equal(T(), T()); // expected-error 2 {{no matching function for call to 'cmp_grea… in test_uchars()
118 …std::cmp_greater_equal(T(), int()); // expected-error 2 {{no matching function for call to 'cmp_gr… in test_uchars()
119 …std::cmp_greater_equal(int(), T()); // expected-error 2 {{no matching function for call to 'cmp_gr… in test_uchars()
120 std::in_range<T>(int()); // expected-error 2 {{no matching function for call to 'in_range'}} in test_uchars()
121 std::in_range<int>(T()); // expected-error 2 {{no matching function for call to 'in_range'}} in test_uchars()