Searched refs:hb_is_same (Results 1 – 1 of 1) sorted by relevance
/external/harfbuzz_ng/src/ |
D | hb-meta.hh | 61 template <typename T, typename T2> struct hb_is_same : hb_false_type {}; struct 62 template <typename T> struct hb_is_same<T, T> : hb_true_type {}; struct 63 #define hb_is_same(T, T2) hb_is_same<T, T2>::value macro 141 static constexpr bool from_void = hb_is_same (void, hb_decay<From>); 142 static constexpr bool to_void = hb_is_same (void, hb_decay<To> ); 165 hb_is_same (hb_decay<From>, hb_decay<To>) && 225 hb_is_same (hb_decay<T>, char) || 226 hb_is_same (hb_decay<T>, signed char) || 227 hb_is_same (hb_decay<T>, unsigned char) || 228 hb_is_same (hb_decay<T>, signed int) || [all …]
|