| /src/contrib/llvm-project/libcxx/include/__type_traits/ |
| H A D | is_convertible.h | 46 struct __is_convertible_test : public false_type {}; 83 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 0, 1> : public false_type{}; 84 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 1, 1> : public false_type{}; 85 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 2, 1> : public false_type{}; 86 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 3, 1> : public false_type{}; 88 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 0, 2> : public false_type{}; 89 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 1, 2> : public false_type{}; 90 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 2, 2> : public false_type{}; 91 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 3, 2> : public false_type{}; 93 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 0, 3> : public false_type{}; [all …]
|
| H A D | is_destructible.h | 55 static false_type __test(...); 77 struct __destructible_false<_Tp, true> : public false_type {}; 83 struct is_destructible<_Tp[]> : public false_type {}; 86 struct is_destructible<void> : public false_type {};
|
| H A D | is_implicitly_default_constructible.h | 31 struct __is_implicitly_default_constructible : false_type {}; 41 false_type> : false_type {};
|
| H A D | is_reference.h | 44 struct _LIBCPP_TEMPLATE_VIS is_lvalue_reference : public false_type {}; 49 struct _LIBCPP_TEMPLATE_VIS is_rvalue_reference : public false_type {}; 54 struct _LIBCPP_TEMPLATE_VIS is_reference : public false_type {};
|
| H A D | is_referenceable.h | 30 static false_type __test(...); 35 …nt<bool, _IsNotSame<decltype(__libcpp_is_referenceable_impl::__test<_Tp>(0)), false_type>::value> {
|
| H A D | is_unbounded_array.h | 22 struct _LIBCPP_TEMPLATE_VIS __libcpp_is_unbounded_array : false_type {}; 29 struct _LIBCPP_TEMPLATE_VIS is_unbounded_array : false_type {};
|
| H A D | is_bounded_array.h | 23 struct _LIBCPP_TEMPLATE_VIS __libcpp_is_bounded_array : false_type {}; 30 struct _LIBCPP_TEMPLATE_VIS is_bounded_array : false_type {};
|
| H A D | is_unsigned.h | 39 struct __libcpp_is_unsigned_impl<_Tp, false> : public false_type {}; // floating point 45 struct __libcpp_is_unsigned<_Tp, false> : public false_type {};
|
| H A D | is_equality_comparable.h | 30 struct __is_equality_comparable : false_type {}; 51 struct __libcpp_is_trivially_equality_comparable_impl : false_type {};
|
| H A D | is_reference_wrapper.h | 24 struct __is_reference_wrapper_impl : public false_type {};
|
| /src/contrib/llvm-project/libcxx/include/__charconv/ |
| H A D | to_chars_integral.h | 47 __to_chars_itoa(char* __first, char* __last, _Tp __value, false_type); 58 return std::__to_chars_itoa(__first, __last, __x, false_type()); in __to_chars_itoa() 63 __to_chars_itoa(char* __first, char* __last, _Tp __value, false_type) { in __to_chars_itoa() argument 76 __to_chars_itoa(char* __first, char* __last, __uint128_t __value, false_type) { in __to_chars_itoa() argument 82 return __to_chars_itoa(__first, __last, static_cast<uint64_t>(__value), false_type()); in __to_chars_itoa() 96 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type); 107 return std::__to_chars_integral(__first, __last, __x, __base, false_type()); in __to_chars_integral() 276 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type) { 278 return std::__to_chars_itoa(__first, __last, __value, false_type());
|
| /src/contrib/llvm-project/libcxx/include/__random/ |
| H A D | is_valid.h | 32 struct __libcpp_random_is_valid_realtype : false_type {}; 47 struct __libcpp_random_is_valid_inttype : false_type {}; 85 struct __libcpp_random_is_valid_urng : false_type {};
|
| /src/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | allocator_traits.h | 39 …struct NAME : false_type {}; … 126 struct __propagate_on_container_copy_assignment : false_type {}; 135 struct __propagate_on_container_move_assignment : false_type {}; 144 struct __propagate_on_container_swap : false_type {}; 162 struct __has_rebind_other : false_type {}; 188 struct __has_allocate_hint : false_type {}; 200 struct __has_construct_impl : false_type {}; 212 struct __has_destroy : false_type {}; 220 struct __has_max_size : false_type {}; 227 struct __has_select_on_container_copy_construction : false_type {}; [all …]
|
| H A D | destruct_n.h | 28 _LIBCPP_HIDE_FROM_ABI void __process(_Tp* __p, false_type) _NOEXCEPT { in __process() 36 _LIBCPP_HIDE_FROM_ABI void __incr(false_type) _NOEXCEPT { ++__size_; } in __incr() 39 _LIBCPP_HIDE_FROM_ABI void __set(size_t __s, false_type) _NOEXCEPT { __size_ = __s; } in __set()
|
| H A D | uses_allocator.h | 27 static false_type __test(...); 40 struct __uses_allocator<_Tp, _Alloc, false> : public false_type {};
|
| H A D | pointer_traits.h | 38 …struct NAME : false_type {}; … 65 struct __has_difference_type : false_type {}; 84 static false_type __test(...); 195 struct _HasToAddress : false_type {}; 202 struct _HasArrow : false_type {};
|
| /src/contrib/llvm-project/libcxx/include/__utility/ |
| H A D | in_place.h | 44 struct __is_inplace_type_imp : false_type {}; 52 struct __is_inplace_index_imp : false_type {};
|
| /src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ilist_node_options.h | 75 template <class Option> struct is_valid_option : std::false_type {}; 93 struct extract_sentinel_tracking<> : std::false_type, is_implicit {}; 126 template <> struct extract_iterator_bits<> : std::false_type, is_implicit {};
|
| /src/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | type_traits.h | 83 static std::false_type get(...); 91 static std::false_type get(...);
|
| /src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_type_traits.h | 24 struct false_type { struct 38 struct is_same : public false_type {}; argument
|
| H A D | sanitizer_type_traits.cpp | 18 const bool false_type::value;
|
| /src/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | iterator_traits.h | 113 static false_type __test(...); 130 static false_type __test(...); 142 static false_type __test(...); 422 struct __has_iterator_category_convertible_to<_Tp, _Up, false> : false_type {}; 428 struct __has_iterator_concept_convertible_to<_Tp, _Up, false> : false_type {}; 456 struct __libcpp_is_contiguous_iterator : false_type {};
|
| /src/contrib/llvm-project/libcxx/include/__tuple/ |
| H A D | sfinae_helpers.h | 41 static auto __do_test(...) -> false_type; 53 struct __tuple_constructible : public false_type {};
|
| /src/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
| H A D | RefactoringActionRulesInternal.h | 99 std::true_type, std::false_type> {}; 109 std::true_type, std::false_type> {};
|
| /src/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | is_permutation.h | 35 struct _ConstTimeDistance : false_type {}; 161 /*_ConstTimeDistance=*/false_type) { 215 /*_ConstTimeDistance=*/false_type());
|