Home
last modified time | relevance | path

Searched refs:is_void (Results 1 – 25 of 32) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_void.h26 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 Dis_nothrow_convertible.h40 : _Or<_And<is_void<_To>, is_void<_Fm>>,
H A Dis_equality_comparable.h78 …(is_same<__remove_cv_t<_Tp>, __remove_cv_t<_Up> >::value || is_void<_Tp>::value || is_void<_Up>::v…
H A Dis_swappable.h57 template <class _Tp, class _Up = _Tp, bool _NotVoid = !is_void<_Tp>::value && !is_void<_Up>::value>
H A Dis_fundamental.h37 …: public integral_constant<bool, is_void<_Tp>::value || __is_nullptr_t<_Tp>::value || is_arithmeti…
H A Dadd_pointer.h31 template <class _Tp, bool = __libcpp_is_referenceable<_Tp>::value || is_void<_Tp>::value>
H A Dinvoke.h360 … __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 Dis_convertible.h56 bool _IsVoid = is_void<_Tp>::value>
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLFunctionalExtras.h60 std::enable_if_t<std::is_void<Ret>::value ||
H A Dfallible_iterator.h72 !std::is_void<decltype(std::declval<T>().operator->())>::value,
H A DFunctionExtras.h70 std::is_void<Ret>,
/freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/
H A Dallocator.h102 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 Dpointer_traits.h132 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 Dunique_ptr.h65 static_assert(!is_void<_Tp>::value, "cannot delete an incomplete type"); in operator()
/freebsd-14.2/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_decl.c314 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 Dformatter_integer.h51 …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 Dbind.h256 is_void<_Rp>::value,
266 is_void<_Rp>::value,
H A Dfunction.h833is_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 DTransformer.h178 } else if (std::is_void<T>::value) {
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dtype_traits34 template <class T> struct is_void;
245 = is_void<T>::value; // C++17
516 #include <__type_traits/is_void.h>
H A Dany101 #include <__type_traits/is_void.h>
/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dtype_traits.inc32 using std::is_void;
/freebsd-14.2/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h360 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 Dgmock-spec-builders.h1605 *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 Dgtest-printers.h727 typename = typename std::enable_if<!std::is_void<T>::value &&

12