Home
last modified time | relevance | path

Searched refs:is_same_type (Results 1 – 25 of 357) sorted by relevance

12345678910>>...15

/dports/math/armadillo/armadillo-10.7.1/include/armadillo_bits/
H A Deglue_core_meat.hpp346 if(is_same_type<eglue_type, eglue_plus >::yes) { arma_applier_2(=, +); } in apply()
347 else if(is_same_type<eglue_type, eglue_minus>::yes) { arma_applier_2(=, -); } in apply()
348 else if(is_same_type<eglue_type, eglue_div >::yes) { arma_applier_2(=, /); } in apply()
349 else if(is_same_type<eglue_type, eglue_schur>::yes) { arma_applier_2(=, *); } in apply()
444 if(is_same_type<eglue_type, eglue_plus >::yes) { arma_applier_2(+=, +); } in apply_inplace_plus()
445 else if(is_same_type<eglue_type, eglue_minus>::yes) { arma_applier_2(+=, -); } in apply_inplace_plus()
446 else if(is_same_type<eglue_type, eglue_div >::yes) { arma_applier_2(+=, /); } in apply_inplace_plus()
447 else if(is_same_type<eglue_type, eglue_schur>::yes) { arma_applier_2(+=, *); } in apply_inplace_plus()
844 if(is_same_type<eglue_type, eglue_plus >::yes) { arma_applier_3(=, +); } in apply()
845 else if(is_same_type<eglue_type, eglue_minus>::yes) { arma_applier_3(=, -); } in apply()
[all …]
H A Dop_any_meat.hpp142 if(is_same_type<op_type, op_rel_lt_pre >::yes) { if(val < tmp) { return true; } } in any_vec_helper()
143 else if(is_same_type<op_type, op_rel_lt_post >::yes) { if(tmp < val) { return true; } } in any_vec_helper()
144 else if(is_same_type<op_type, op_rel_gt_pre >::yes) { if(val > tmp) { return true; } } in any_vec_helper()
145 else if(is_same_type<op_type, op_rel_gt_post >::yes) { if(tmp > val) { return true; } } in any_vec_helper()
146 else if(is_same_type<op_type, op_rel_lteq_pre >::yes) { if(val <= tmp) { return true; } } in any_vec_helper()
147 else if(is_same_type<op_type, op_rel_lteq_post>::yes) { if(tmp <= val) { return true; } } in any_vec_helper()
148 else if(is_same_type<op_type, op_rel_gteq_pre >::yes) { if(val >= tmp) { return true; } } in any_vec_helper()
149 else if(is_same_type<op_type, op_rel_gteq_post>::yes) { if(tmp >= val) { return true; } } in any_vec_helper()
150 else if(is_same_type<op_type, op_rel_eq >::yes) { if(tmp == val) { return true; } } in any_vec_helper()
151 else if(is_same_type<op_type, op_rel_noteq >::yes) { if(tmp != val) { return true; } } in any_vec_helper()
[all …]
H A Dop_find_meat.hpp152 if(is_same_type<op_type, op_rel_lt_pre >::yes) { not_zero = (val < tmp); } in helper()
153 else if(is_same_type<op_type, op_rel_lt_post >::yes) { not_zero = (tmp < val); } in helper()
154 else if(is_same_type<op_type, op_rel_gt_pre >::yes) { not_zero = (val > tmp); } in helper()
155 else if(is_same_type<op_type, op_rel_gt_post >::yes) { not_zero = (tmp > val); } in helper()
156 else if(is_same_type<op_type, op_rel_lteq_pre >::yes) { not_zero = (val <= tmp); } in helper()
157 else if(is_same_type<op_type, op_rel_lteq_post>::yes) { not_zero = (tmp <= val); } in helper()
158 else if(is_same_type<op_type, op_rel_gteq_pre >::yes) { not_zero = (val >= tmp); } in helper()
243 if(is_same_type<op_type, op_rel_eq >::yes) { not_zero = (tmp == val); } in helper()
244 else if(is_same_type<op_type, op_rel_noteq>::yes) { not_zero = (tmp != val); } in helper()
264 if(is_same_type<op_type, op_rel_eq >::yes) { not_zero = (tmp == val); } in helper()
[all …]
H A Dop_all_meat.hpp170 if(is_same_type<op_type, op_rel_lt_pre >::yes) { if(val < tmp) { ++count; } } in all_vec_helper()
171 else if(is_same_type<op_type, op_rel_lt_post >::yes) { if(tmp < val) { ++count; } } in all_vec_helper()
172 else if(is_same_type<op_type, op_rel_gt_pre >::yes) { if(val > tmp) { ++count; } } in all_vec_helper()
173 else if(is_same_type<op_type, op_rel_gt_post >::yes) { if(tmp > val) { ++count; } } in all_vec_helper()
174 else if(is_same_type<op_type, op_rel_lteq_pre >::yes) { if(val <= tmp) { ++count; } } in all_vec_helper()
175 else if(is_same_type<op_type, op_rel_lteq_post>::yes) { if(tmp <= val) { ++count; } } in all_vec_helper()
176 else if(is_same_type<op_type, op_rel_gteq_pre >::yes) { if(val >= tmp) { ++count; } } in all_vec_helper()
177 else if(is_same_type<op_type, op_rel_gteq_post>::yes) { if(tmp >= val) { ++count; } } in all_vec_helper()
178 else if(is_same_type<op_type, op_rel_eq >::yes) { if(tmp == val) { ++count; } } in all_vec_helper()
179 else if(is_same_type<op_type, op_rel_noteq >::yes) { if(tmp != val) { ++count; } } in all_vec_helper()
[all …]
H A Dsubview_elem1_meat.hpp100 if(is_same_type<op_type, op_internal_equ >::yes) { m_mem[ii] = val; } in inplace_op()
101 if(is_same_type<op_type, op_internal_plus >::yes) { m_mem[ii] += val; } in inplace_op()
102 if(is_same_type<op_type, op_internal_minus>::yes) { m_mem[ii] -= val; } in inplace_op()
103 if(is_same_type<op_type, op_internal_schur>::yes) { m_mem[ii] *= val; } in inplace_op()
104 if(is_same_type<op_type, op_internal_div >::yes) { m_mem[ii] /= val; } in inplace_op()
126 if(is_same_type<op_type, op_internal_equ >::yes) { s.operator= (tmp); } in inplace_op()
127 if(is_same_type<op_type, op_internal_plus >::yes) { s.operator+=(tmp); } in inplace_op()
128 if(is_same_type<op_type, op_internal_minus>::yes) { s.operator-=(tmp); } in inplace_op()
129 if(is_same_type<op_type, op_internal_schur>::yes) { s.operator%=(tmp); } in inplace_op()
130 if(is_same_type<op_type, op_internal_div >::yes) { s.operator/=(tmp); } in inplace_op()
[all …]
H A DeGlue_meat.hpp91 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1[ii] + P2[ii]; } in operator []()
92 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1[ii] - P2[ii]; } in operator []()
93 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1[ii] / P2[ii]; } in operator []()
94 else if(is_same_type<eglue_type, eglue_schur>::yes) { return P1[ii] * P2[ii]; } in operator []()
109 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1.at(row,col) + P2.at(row,col); } in at()
110 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1.at(row,col) - P2.at(row,col); } in at()
111 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1.at(row,col) / P2.at(row,col); } in at()
127 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1.at_alt(ii) + P2.at_alt(ii); } in at_alt()
128 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1.at_alt(ii) - P2.at_alt(ii); } in at_alt()
129 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1.at_alt(ii) / P2.at_alt(ii); } in at_alt()
[all …]
H A DeGlueCube_meat.hpp110 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1[i] + P2[i]; } in operator []()
111 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1[i] - P2[i]; } in operator []()
112 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1[i] / P2[i]; } in operator []()
113 else if(is_same_type<eglue_type, eglue_schur>::yes) { return P1[i] * P2[i]; } in operator []()
127 …if(is_same_type<eglue_type, eglue_plus >::yes) { return P1.at(row,col,slice) + P2.at(row,col,slice… in at()
128 …else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1.at(row,col,slice) - P2.at(row,col,… in at()
129 …else if(is_same_type<eglue_type, eglue_div >::yes) { return P1.at(row,col,slice) / P2.at(row,col,… in at()
145 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1.at_alt(i) + P2.at_alt(i); } in at_alt()
146 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1.at_alt(i) - P2.at_alt(i); } in at_alt()
147 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1.at_alt(i) / P2.at_alt(i); } in at_alt()
[all …]
H A DGen_meat.hpp51 if(is_same_type<gen_type, gen_eye>::yes) in operator []()
70 if(is_same_type<gen_type, gen_eye>::yes) in at()
102 if(is_same_type<gen_type, gen_eye >::yes) { out.eye(); } in apply()
103 else if(is_same_type<gen_type, gen_ones >::yes) { out.ones(); } in apply()
104 else if(is_same_type<gen_type, gen_zeros>::yes) { out.zeros(); } in apply()
105 else if(is_same_type<gen_type, gen_randu>::yes) { out.randu(); } in apply()
106 else if(is_same_type<gen_type, gen_randn>::yes) { out.randn(); } in apply()
123 if(is_same_type<gen_type, gen_eye>::yes) in apply_inplace_plus()
169 if(is_same_type<gen_type, gen_eye>::yes) in apply_inplace_minus()
215 if(is_same_type<gen_type, gen_eye>::yes) in apply_inplace_schur()
[all …]
H A Doperator_schur.hpp32 …is_arma_type<T1>::value && is_arma_type<T2>::value && is_same_type<typename T1::elem_type, typenam…
54 …(is_arma_type<T1>::value && is_arma_type<T2>::value && (is_same_type<typename T1::elem_type, typen…
161 is_same_type<typename T1::elem_type, typename T2::elem_type>::yes &&
162 (is_same_type<op_type, op_sp_plus>::value ||
163 is_same_type<op_type, op_sp_minus_pre>::value ||
164 is_same_type<op_type, op_sp_minus_post>::value)
193 is_same_type<typename T1::elem_type, typename T2::elem_type>::yes &&
194 (is_same_type<op_type, op_sp_plus>::value ||
195 is_same_type<op_type, op_sp_minus_pre>::value ||
196 is_same_type<op_type, op_sp_minus_post>::value)
[all …]
/dports/math/R-cran-RcppArmadillo/RcppArmadillo/inst/include/armadillo_bits/
H A Deglue_core_meat.hpp346 if(is_same_type<eglue_type, eglue_plus >::yes) { arma_applier_2(=, +); } in apply()
347 else if(is_same_type<eglue_type, eglue_minus>::yes) { arma_applier_2(=, -); } in apply()
348 else if(is_same_type<eglue_type, eglue_div >::yes) { arma_applier_2(=, /); } in apply()
349 else if(is_same_type<eglue_type, eglue_schur>::yes) { arma_applier_2(=, *); } in apply()
444 if(is_same_type<eglue_type, eglue_plus >::yes) { arma_applier_2(+=, +); } in apply_inplace_plus()
445 else if(is_same_type<eglue_type, eglue_minus>::yes) { arma_applier_2(+=, -); } in apply_inplace_plus()
446 else if(is_same_type<eglue_type, eglue_div >::yes) { arma_applier_2(+=, /); } in apply_inplace_plus()
447 else if(is_same_type<eglue_type, eglue_schur>::yes) { arma_applier_2(+=, *); } in apply_inplace_plus()
844 if(is_same_type<eglue_type, eglue_plus >::yes) { arma_applier_3(=, +); } in apply()
845 else if(is_same_type<eglue_type, eglue_minus>::yes) { arma_applier_3(=, -); } in apply()
[all …]
H A Dop_any_meat.hpp142 if(is_same_type<op_type, op_rel_lt_pre >::yes) { if(val < tmp) { return true; } } in any_vec_helper()
143 else if(is_same_type<op_type, op_rel_lt_post >::yes) { if(tmp < val) { return true; } } in any_vec_helper()
144 else if(is_same_type<op_type, op_rel_gt_pre >::yes) { if(val > tmp) { return true; } } in any_vec_helper()
145 else if(is_same_type<op_type, op_rel_gt_post >::yes) { if(tmp > val) { return true; } } in any_vec_helper()
146 else if(is_same_type<op_type, op_rel_lteq_pre >::yes) { if(val <= tmp) { return true; } } in any_vec_helper()
147 else if(is_same_type<op_type, op_rel_lteq_post>::yes) { if(tmp <= val) { return true; } } in any_vec_helper()
148 else if(is_same_type<op_type, op_rel_gteq_pre >::yes) { if(val >= tmp) { return true; } } in any_vec_helper()
149 else if(is_same_type<op_type, op_rel_gteq_post>::yes) { if(tmp >= val) { return true; } } in any_vec_helper()
150 else if(is_same_type<op_type, op_rel_eq >::yes) { if(tmp == val) { return true; } } in any_vec_helper()
151 else if(is_same_type<op_type, op_rel_noteq >::yes) { if(tmp != val) { return true; } } in any_vec_helper()
[all …]
H A Dop_find_meat.hpp152 if(is_same_type<op_type, op_rel_lt_pre >::yes) { not_zero = (val < tmp); } in helper()
153 else if(is_same_type<op_type, op_rel_lt_post >::yes) { not_zero = (tmp < val); } in helper()
154 else if(is_same_type<op_type, op_rel_gt_pre >::yes) { not_zero = (val > tmp); } in helper()
155 else if(is_same_type<op_type, op_rel_gt_post >::yes) { not_zero = (tmp > val); } in helper()
156 else if(is_same_type<op_type, op_rel_lteq_pre >::yes) { not_zero = (val <= tmp); } in helper()
157 else if(is_same_type<op_type, op_rel_lteq_post>::yes) { not_zero = (tmp <= val); } in helper()
158 else if(is_same_type<op_type, op_rel_gteq_pre >::yes) { not_zero = (val >= tmp); } in helper()
243 if(is_same_type<op_type, op_rel_eq >::yes) { not_zero = (tmp == val); } in helper()
244 else if(is_same_type<op_type, op_rel_noteq>::yes) { not_zero = (tmp != val); } in helper()
264 if(is_same_type<op_type, op_rel_eq >::yes) { not_zero = (tmp == val); } in helper()
[all …]
H A Dop_all_meat.hpp170 if(is_same_type<op_type, op_rel_lt_pre >::yes) { if(val < tmp) { ++count; } } in all_vec_helper()
171 else if(is_same_type<op_type, op_rel_lt_post >::yes) { if(tmp < val) { ++count; } } in all_vec_helper()
172 else if(is_same_type<op_type, op_rel_gt_pre >::yes) { if(val > tmp) { ++count; } } in all_vec_helper()
173 else if(is_same_type<op_type, op_rel_gt_post >::yes) { if(tmp > val) { ++count; } } in all_vec_helper()
174 else if(is_same_type<op_type, op_rel_lteq_pre >::yes) { if(val <= tmp) { ++count; } } in all_vec_helper()
175 else if(is_same_type<op_type, op_rel_lteq_post>::yes) { if(tmp <= val) { ++count; } } in all_vec_helper()
176 else if(is_same_type<op_type, op_rel_gteq_pre >::yes) { if(val >= tmp) { ++count; } } in all_vec_helper()
177 else if(is_same_type<op_type, op_rel_gteq_post>::yes) { if(tmp >= val) { ++count; } } in all_vec_helper()
178 else if(is_same_type<op_type, op_rel_eq >::yes) { if(tmp == val) { ++count; } } in all_vec_helper()
179 else if(is_same_type<op_type, op_rel_noteq >::yes) { if(tmp != val) { ++count; } } in all_vec_helper()
[all …]
H A Dsubview_elem1_meat.hpp100 if(is_same_type<op_type, op_internal_equ >::yes) { m_mem[ii] = val; } in inplace_op()
101 if(is_same_type<op_type, op_internal_plus >::yes) { m_mem[ii] += val; } in inplace_op()
102 if(is_same_type<op_type, op_internal_minus>::yes) { m_mem[ii] -= val; } in inplace_op()
103 if(is_same_type<op_type, op_internal_schur>::yes) { m_mem[ii] *= val; } in inplace_op()
104 if(is_same_type<op_type, op_internal_div >::yes) { m_mem[ii] /= val; } in inplace_op()
126 if(is_same_type<op_type, op_internal_equ >::yes) { s.operator= (tmp); } in inplace_op()
127 if(is_same_type<op_type, op_internal_plus >::yes) { s.operator+=(tmp); } in inplace_op()
128 if(is_same_type<op_type, op_internal_minus>::yes) { s.operator-=(tmp); } in inplace_op()
129 if(is_same_type<op_type, op_internal_schur>::yes) { s.operator%=(tmp); } in inplace_op()
130 if(is_same_type<op_type, op_internal_div >::yes) { s.operator/=(tmp); } in inplace_op()
[all …]
H A DeGlue_meat.hpp91 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1[ii] + P2[ii]; } in operator []()
92 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1[ii] - P2[ii]; } in operator []()
93 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1[ii] / P2[ii]; } in operator []()
94 else if(is_same_type<eglue_type, eglue_schur>::yes) { return P1[ii] * P2[ii]; } in operator []()
109 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1.at(row,col) + P2.at(row,col); } in at()
110 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1.at(row,col) - P2.at(row,col); } in at()
111 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1.at(row,col) / P2.at(row,col); } in at()
127 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1.at_alt(ii) + P2.at_alt(ii); } in at_alt()
128 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1.at_alt(ii) - P2.at_alt(ii); } in at_alt()
129 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1.at_alt(ii) / P2.at_alt(ii); } in at_alt()
[all …]
H A DeGlueCube_meat.hpp110 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1[i] + P2[i]; } in operator []()
111 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1[i] - P2[i]; } in operator []()
112 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1[i] / P2[i]; } in operator []()
113 else if(is_same_type<eglue_type, eglue_schur>::yes) { return P1[i] * P2[i]; } in operator []()
127 …if(is_same_type<eglue_type, eglue_plus >::yes) { return P1.at(row,col,slice) + P2.at(row,col,slice… in at()
128 …else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1.at(row,col,slice) - P2.at(row,col,… in at()
129 …else if(is_same_type<eglue_type, eglue_div >::yes) { return P1.at(row,col,slice) / P2.at(row,col,… in at()
145 if(is_same_type<eglue_type, eglue_plus >::yes) { return P1.at_alt(i) + P2.at_alt(i); } in at_alt()
146 else if(is_same_type<eglue_type, eglue_minus>::yes) { return P1.at_alt(i) - P2.at_alt(i); } in at_alt()
147 else if(is_same_type<eglue_type, eglue_div >::yes) { return P1.at_alt(i) / P2.at_alt(i); } in at_alt()
[all …]
H A DGen_meat.hpp51 if(is_same_type<gen_type, gen_eye>::yes) in operator []()
70 if(is_same_type<gen_type, gen_eye>::yes) in at()
102 if(is_same_type<gen_type, gen_eye >::yes) { out.eye(); } in apply()
103 else if(is_same_type<gen_type, gen_ones >::yes) { out.ones(); } in apply()
104 else if(is_same_type<gen_type, gen_zeros>::yes) { out.zeros(); } in apply()
105 else if(is_same_type<gen_type, gen_randu>::yes) { out.randu(); } in apply()
106 else if(is_same_type<gen_type, gen_randn>::yes) { out.randn(); } in apply()
123 if(is_same_type<gen_type, gen_eye>::yes) in apply_inplace_plus()
169 if(is_same_type<gen_type, gen_eye>::yes) in apply_inplace_minus()
215 if(is_same_type<gen_type, gen_eye>::yes) in apply_inplace_schur()
[all …]
H A Doperator_schur.hpp32 …is_arma_type<T1>::value && is_arma_type<T2>::value && is_same_type<typename T1::elem_type, typenam…
54 …(is_arma_type<T1>::value && is_arma_type<T2>::value && (is_same_type<typename T1::elem_type, typen…
161 is_same_type<typename T1::elem_type, typename T2::elem_type>::yes &&
162 (is_same_type<op_type, op_sp_plus>::value ||
163 is_same_type<op_type, op_sp_minus_pre>::value ||
164 is_same_type<op_type, op_sp_minus_post>::value)
193 is_same_type<typename T1::elem_type, typename T2::elem_type>::yes &&
194 (is_same_type<op_type, op_sp_plus>::value ||
195 is_same_type<op_type, op_sp_minus_pre>::value ||
196 is_same_type<op_type, op_sp_minus_post>::value)
[all …]
/dports/science/py-dlib/dlib-19.22/dlib/type_safe_union/
H A Dtype_safe_union_kernel.h290 if (is_same_type<T,T1>::value) return 1; in get_type_id()
291 if (is_same_type<T,T2>::value) return 2; in get_type_id()
292 if (is_same_type<T,T3>::value) return 3; in get_type_id()
293 if (is_same_type<T,T4>::value) return 4; in get_type_id()
294 if (is_same_type<T,T5>::value) return 5; in get_type_id()
296 if (is_same_type<T,T6>::value) return 6; in get_type_id()
297 if (is_same_type<T,T7>::value) return 7; in get_type_id()
298 if (is_same_type<T,T8>::value) return 8; in get_type_id()
299 if (is_same_type<T,T9>::value) return 9; in get_type_id()
300 if (is_same_type<T,T10>::value) return 10; in get_type_id()
[all …]
/dports/science/dlib-cpp/dlib-19.22/dlib/type_safe_union/
H A Dtype_safe_union_kernel.h290 if (is_same_type<T,T1>::value) return 1; in get_type_id()
291 if (is_same_type<T,T2>::value) return 2; in get_type_id()
292 if (is_same_type<T,T3>::value) return 3; in get_type_id()
293 if (is_same_type<T,T4>::value) return 4; in get_type_id()
294 if (is_same_type<T,T5>::value) return 5; in get_type_id()
296 if (is_same_type<T,T6>::value) return 6; in get_type_id()
297 if (is_same_type<T,T7>::value) return 7; in get_type_id()
298 if (is_same_type<T,T8>::value) return 8; in get_type_id()
299 if (is_same_type<T,T9>::value) return 9; in get_type_id()
300 if (is_same_type<T,T10>::value) return 10; in get_type_id()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/SemaCXX/
H A Dunderlying_type.cpp6 struct is_same_type { struct
10 struct is_same_type<T, T> { struct
18 static_assert(is_same_type<char, __underlying_type(f)>::value, argument
22 static_assert(is_same_type<int, __underlying_type(g)>::value,
26 static_assert(is_same_type<char, decltype(h)>::value,
34 static_assert(is_same_type<underlying_type<f>::type, char>::value,
42 static_assert(is_same_type<underlying_type<foo>::type, unsigned>::value,
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/SemaCXX/
H A Dunderlying_type.cpp6 struct is_same_type { struct
10 struct is_same_type<T, T> { argument
18 static_assert(is_same_type<char, __underlying_type(f)>::value, argument
22 static_assert(is_same_type<int, __underlying_type(g)>::value,
26 static_assert(is_same_type<char, decltype(h)>::value,
34 static_assert(is_same_type<underlying_type<f>::type, char>::value,
42 static_assert(is_same_type<underlying_type<foo>::type, unsigned>::value,
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/SemaCXX/
H A Dunderlying_type.cpp6 struct is_same_type { struct
10 struct is_same_type<T, T> { argument
18 static_assert(is_same_type<char, __underlying_type(f)>::value, argument
22 static_assert(is_same_type<int, __underlying_type(g)>::value,
26 static_assert(is_same_type<char, decltype(h)>::value,
34 static_assert(is_same_type<underlying_type<f>::type, char>::value,
42 static_assert(is_same_type<underlying_type<foo>::type, unsigned>::value,
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/SemaCXX/
H A Dunderlying_type.cpp6 struct is_same_type { struct
10 struct is_same_type<T, T> { argument
18 static_assert(is_same_type<char, __underlying_type(f)>::value, argument
22 static_assert(is_same_type<int, __underlying_type(g)>::value,
26 static_assert(is_same_type<char, decltype(h)>::value,
34 static_assert(is_same_type<underlying_type<f>::type, char>::value,
42 static_assert(is_same_type<underlying_type<foo>::type, unsigned>::value,
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/SemaCXX/
H A Dunderlying_type.cpp6 struct is_same_type { struct
10 struct is_same_type<T, T> { argument
18 static_assert(is_same_type<char, __underlying_type(f)>::value, argument
22 static_assert(is_same_type<int, __underlying_type(g)>::value,
26 static_assert(is_same_type<char, decltype(h)>::value,
34 static_assert(is_same_type<underlying_type<f>::type, char>::value,
42 static_assert(is_same_type<underlying_type<foo>::type, unsigned>::value,

12345678910>>...15