reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
371 typename std::enable_if<!is_hashable_data<T>::value, size_t>::type 372 get_hashable_data(const T &value) { 554 const T &arg, const Ts &...args) { 554 const T &arg, const Ts &...args) { 600 template <typename ...Ts> hash_code hash_combine(const Ts &...args) {include/llvm/Support/type_traits.h
31 using UnderlyingT = typename std::remove_reference<T>::type;
unittests/ADT/HashingTest.cpp127 hash_code hash_value(HashableDummy dummy) { return dummy.value; } 165 const HashableDummy d_arr5[] = { {1}, {2}, {3} }; 297 const HashableDummy d1 = { 1024 }, d2 = { 8888 }, d3 = { 9000000 };usr/include/c++/7.4.0/type_traits
215 : public __is_void_helper<typename remove_cv<_Tp>::type>::type 354 : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type 381 : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type 581 : public __or_<is_lvalue_reference<_Tp>, 582 is_rvalue_reference<_Tp>>::type 601 : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>, 601 : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>, 602 is_void<_Tp>>>::type 638 : public __or_<is_object<_Tp>, is_reference<_Tp>>::type 638 : public __or_<is_object<_Tp>, is_reference<_Tp>>::type 762 typename add_rvalue_reference<_Tp>::type declval() noexcept; 1538 typedef decltype(__test<_From, _To>(0)) type; 1545 : public __is_convertible_helper<_From, _To>::type 1554 { typedef _Tp type; }; 1558 { typedef _Tp type; }; 1563 { typedef _Tp type; }; 1574 remove_const<typename remove_volatile<_Tp>::type>::type type; 1629 { typedef _Tp type; }; 1659 { typedef _Tp&& type; }; 1664 : public __add_rvalue_reference_helper<_Tp>