Home
last modified time | relevance | path

Searched refs:true_type (Results 1 – 25 of 142) sorted by relevance

123456

/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dis_valid.h34 struct __libcpp_random_is_valid_realtype<float> : true_type {};
36 struct __libcpp_random_is_valid_realtype<double> : true_type {};
38 struct __libcpp_random_is_valid_realtype<long double> : true_type {};
49 struct __libcpp_random_is_valid_inttype<int8_t> : true_type {}; // extension
51 struct __libcpp_random_is_valid_inttype<short> : true_type {};
53 struct __libcpp_random_is_valid_inttype<int> : true_type {};
55 struct __libcpp_random_is_valid_inttype<long> : true_type {};
57 struct __libcpp_random_is_valid_inttype<long long> : true_type {};
59 struct __libcpp_random_is_valid_inttype<uint8_t> : true_type {}; // extension
61 struct __libcpp_random_is_valid_inttype<unsigned short> : true_type {};
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DClauseT.h196 using WrapperTrait = std::true_type;
201 using UnionTrait = std::true_type;
209 using TupleTrait = std::true_type;
217 using TupleTrait = std::true_type;
233 using WrapperTrait = std::true_type;
247 using TupleTrait = std::true_type;
250 using TupleTrait = std::true_type;
256 using WrapperTrait = std::true_type;
269 using UnionTrait = std::true_type;
328 using WrapperTrait = std::true_type;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_signed_integer.h23 template <> struct __libcpp_is_signed_integer<signed char> : public true_type {};
24 template <> struct __libcpp_is_signed_integer<signed short> : public true_type {};
25 template <> struct __libcpp_is_signed_integer<signed int> : public true_type {};
26 template <> struct __libcpp_is_signed_integer<signed long> : public true_type {};
27 template <> struct __libcpp_is_signed_integer<signed long long> : public true_type {};
29 template <> struct __libcpp_is_signed_integer<__int128_t> : public true_type {};
H A Dis_unsigned_integer.h23 template <> struct __libcpp_is_unsigned_integer<unsigned char> : public true_type {};
24 template <> struct __libcpp_is_unsigned_integer<unsigned short> : public true_type {};
25 template <> struct __libcpp_is_unsigned_integer<unsigned int> : public true_type {};
26 template <> struct __libcpp_is_unsigned_integer<unsigned long> : public true_type {};
27 template <> struct __libcpp_is_unsigned_integer<unsigned long long> : public true_type {};
29 template <> struct __libcpp_is_unsigned_integer<__uint128_t> : public true_type {};
H A Dis_reference.h46 struct _LIBCPP_TEMPLATE_VIS is_lvalue_reference<_Tp&> : public true_type {};
51 struct _LIBCPP_TEMPLATE_VIS is_rvalue_reference<_Tp&&> : public true_type {};
56 struct _LIBCPP_TEMPLATE_VIS is_reference<_Tp&> : public true_type {};
58 struct _LIBCPP_TEMPLATE_VIS is_reference<_Tp&&> : public true_type {};
H A Dis_floating_point.h24 template <> struct __libcpp_is_floating_point<float> : public true_type {};
25 template <> struct __libcpp_is_floating_point<double> : public true_type {};
26 template <> struct __libcpp_is_floating_point<long double> : public true_type {};
H A Dis_equality_comparable.h33 …comparable<_Tp, _Up, __void_t<decltype(std::declval<_Tp>() == std::declval<_Up>())> > : true_type {
68 … is_signed<_Tp>::value == is_signed<_Up>::value && sizeof(_Tp) == sizeof(_Up)> > : true_type {};
71 struct __libcpp_is_trivially_equality_comparable_impl<_Tp*, _Tp*> : true_type {};
H A Dis_unbounded_array.h24 struct _LIBCPP_TEMPLATE_VIS __libcpp_is_unbounded_array<_Tp[]> : true_type {};
31 struct _LIBCPP_TEMPLATE_VIS is_unbounded_array<_Tp[]> : true_type {};
H A Dis_bounded_array.h25 struct _LIBCPP_TEMPLATE_VIS __libcpp_is_bounded_array<_Tp[_Np]> : true_type {};
32 struct _LIBCPP_TEMPLATE_VIS is_bounded_array<_Tp[_Np]> : true_type {};
H A Dis_implicitly_default_constructible.h36 true_type> : true_type {};
H A Dis_array.h38 struct _LIBCPP_TEMPLATE_VIS is_array<_Tp[]> : public true_type {};
40 struct _LIBCPP_TEMPLATE_VIS is_array<_Tp[_Np]> : public true_type {};
H A Dconjunction.h25 using __expand_to_true = true_type;
50 struct conjunction : true_type {};
H A Dis_scalar.h42 struct __is_block<_Rp (^)(_Args...)> : true_type {};
58 struct _LIBCPP_TEMPLATE_VIS is_scalar<nullptr_t> : public true_type {};
H A Dis_nothrow_destructible.h49 struct _LIBCPP_TEMPLATE_VIS is_nothrow_destructible<_Tp&> : public true_type {};
52 struct _LIBCPP_TEMPLATE_VIS is_nothrow_destructible<_Tp&&> : public true_type {};
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Didentity.h37 struct __is_identity<__identity> : true_type {};
39 struct __is_identity<reference_wrapper<__identity> > : true_type {};
41 struct __is_identity<reference_wrapper<const __identity> > : true_type {};
55 struct __is_identity<identity> : true_type {};
57 struct __is_identity<reference_wrapper<identity> > : true_type {};
59 struct __is_identity<reference_wrapper<const identity> > : true_type {};
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dalgorithm_fwd.h
H A Dexecution_defs.h
H A Dmemory_impl.h
H A Dutils.h
/freebsd/contrib/llvm-project/libcxx/include/__tuple/
H A Dtuple_like_ext.h38 struct __tuple_like_ext<tuple<_Tp...> > : true_type {};
42 struct __tuple_like_ext<pair<_T1, _T2> > : true_type {};
45 struct __tuple_like_ext<array<_Tp, _Size> > : true_type {};
48 struct __tuple_like_ext<__tuple_types<_Tp...> > : true_type {};
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist_node_options.h90 template <> struct extract_sentinel_tracking<> : std::true_type, is_implicit {};
97 : std::true_type {};
113 template <class Tag> struct is_valid_option<ilist_tag<Tag>> : std::true_type {};
128 struct is_valid_option<ilist_iterator_bits<IteratorBits>> : std::true_type {};
143 struct is_valid_option<ilist_parent<ParentTy>> : std::true_type {};
149 template <> struct check_options<> : std::true_type {};
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Ddestruct_n.h34 _LIBCPP_HIDE_FROM_ABI void __process(_Tp*, true_type) _NOEXCEPT {} in __process()
37 _LIBCPP_HIDE_FROM_ABI void __incr(true_type) _NOEXCEPT {} in __incr()
40 _LIBCPP_HIDE_FROM_ABI void __set(size_t, true_type) _NOEXCEPT {}
H A Dallocator_traits.h41 struct NAME<_Tp, __void_t<typename _Tp::PROPERTY > > : true_type {}
162 … __has_rebind_other<_Tp, _Up, __void_t<typename _Tp::template rebind<_Up>::other> > : true_type {};
194 : true_type {};
203 _Args...> : true_type {};
214 : true_type {};
221 struct __has_max_size<_Alloc, decltype((void)std::declval<_Alloc&>().max_size())> : true_type {};
230 decltype((void)std::declval<_Alloc>().select_on_container_copy_construction())> : true_type {};
376 struct __check_valid_allocator : true_type {
391 struct __is_default_allocator<allocator<_Tp> > : true_type {};
402 : true_type {};
H A Dallocator.h102 typedef true_type propagate_on_container_move_assignment;
104 _LIBCPP_DEPRECATED_IN_CXX23 typedef true_type is_always_equal;
183 typedef true_type propagate_on_container_move_assignment;
185 _LIBCPP_DEPRECATED_IN_CXX23 typedef true_type is_always_equal;
/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Din_place.h46 struct __is_inplace_type_imp<in_place_type_t<_Tp>> : true_type {};
54 struct __is_inplace_index_imp<in_place_index_t<_Idx>> : true_type {};

123456