| /freebsd-14.2/contrib/llvm-project/libcxx/include/__type_traits/ |
| H A D | is_void.h | 26 struct _LIBCPP_TEMPLATE_VIS is_void : _BoolConstant<__is_void(_Tp)> {}; struct 36 struct _LIBCPP_TEMPLATE_VIS is_void : public is_same<__remove_cv_t<_Tp>, void> {}; 40 inline constexpr bool is_void_v = is_void<_Tp>::value;
|
| H A D | is_nothrow_convertible.h | 40 : _Or<_And<is_void<_To>, is_void<_Fm>>,
|
| H A D | is_equality_comparable.h | 78 …(is_same<__remove_cv_t<_Tp>, __remove_cv_t<_Up> >::value || is_void<_Tp>::value || is_void<_Up>::v…
|
| H A D | is_swappable.h | 57 template <class _Tp, class _Up = _Tp, bool _NotVoid = !is_void<_Tp>::value && !is_void<_Up>::value>
|
| H A D | is_fundamental.h | 37 …: public integral_constant<bool, is_void<_Tp>::value || __is_nullptr_t<_Tp>::value || is_arithmeti…
|
| H A D | add_pointer.h | 31 template <class _Tp, bool = __libcpp_is_referenceable<_Tp>::value || is_void<_Tp>::value>
|
| H A D | invoke.h | 360 … __conditional_t<is_void<_Ret>::value, true_type, __is_core_convertible<_Result, _Ret> >, 398 …__nothrow_invokable_r_imp<__invokable_r<_Ret, _Fp, _Args...>::value, is_void<_Ret>::value, _Ret, _… 407 template <class _Ret, bool = is_void<_Ret>::value>
|
| H A D | is_convertible.h | 56 bool _IsVoid = is_void<_Tp>::value>
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | STLFunctionalExtras.h | 60 std::enable_if_t<std::is_void<Ret>::value ||
|
| H A D | fallible_iterator.h | 72 !std::is_void<decltype(std::declval<T>().operator->())>::value,
|
| H A D | FunctionExtras.h | 70 std::is_void<Ret>,
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | allocator.h | 102 class _LIBCPP_TEMPLATE_VIS allocator : private __non_trivial_if<!is_void<_Tp>::value, allocator<_Tp… 182 : private __non_trivial_if<!is_void<_Tp>::value, allocator<const _Tp> > {
|
| H A D | pointer_traits.h | 132 pointer_to(__conditional_t<is_void<element_type>::value, __nat, element_type>& __r) { 161 pointer_to(__conditional_t<is_void<element_type>::value, __nat, element_type>& __r) _NOEXCEPT {
|
| H A D | unique_ptr.h | 65 static_assert(!is_void<_Tp>::value, "cannot delete an incomplete type"); in operator()
|
| /freebsd-14.2/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_decl.c | 314 int is_void, v = 0, i = 1; in dt_decl_prototype() local 332 is_void = dt_node_is_void(dnp); in dt_decl_prototype() 333 v += is_void; in dt_decl_prototype() 335 if (is_void && !(flags & DT_DP_VOID)) { in dt_decl_prototype() 342 if (is_void && dnp->dn_string != NULL) { in dt_decl_prototype() 355 !is_void && !(flags & DT_DP_ANON)) { in dt_decl_prototype()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__format/ |
| H A D | formatter_integer.h | 51 …static_assert(!is_void<_Type>::value, "unsupported integral type used in __formatter_integer::__fo… in format()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | bind.h | 256 is_void<_Rp>::value, 266 is_void<_Rp>::value,
|
| H A D | function.h | 833 …is_void<_Rp>::value || __is_core_convertible<typename __invoke_of<_Fp, _ArgTypes...>::type, _Rp>::…
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Transformer/ |
| H A D | Transformer.h | 178 } else if (std::is_void<T>::value) {
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | type_traits | 34 template <class T> struct is_void; 245 = is_void<T>::value; // C++17 516 #include <__type_traits/is_void.h>
|
| H A D | any | 101 #include <__type_traits/is_void.h>
|
| /freebsd-14.2/contrib/llvm-project/libcxx/modules/std/ |
| H A D | type_traits.inc | 32 using std::is_void;
|
| /freebsd-14.2/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-actions.h | 360 std::is_void<R>::value, // 1131 static_assert(std::is_void<Result>::value, "Result should be void."); 1373 static_assert(std::is_void<Result>::value, "Result type should be void.");
|
| H A D | gmock-spec-builders.h | 1605 *os << (std::is_void<Result>::value ? "returning directly.\n" in DescribeDefaultActionTo() 1750 internal::negation<std::is_void<T>>,
|
| /freebsd-14.2/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-printers.h | 727 typename = typename std::enable_if<!std::is_void<T>::value &&
|