/freebsd/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 | 50 : _Or<_And<is_void<_To>, is_void<_Fm>>,
|
H A D | is_equality_comparable.h | 79 …(is_same<__remove_cv_t<_Tp>, __remove_cv_t<_Up> >::value || is_void<_Tp>::value || is_void<_Up>::v…
|
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 | 29 template <class _Tp, bool = __libcpp_is_referenceable<_Tp>::value || is_void<_Tp>::value>
|
H A D | invoke.h | 166 … __conditional_t<is_void<_Ret>::value, true_type, __is_core_convertible<_Result, _Ret> >, 204 …__nothrow_invokable_r_imp<__invokable_r<_Ret, _Fp, _Args...>::value, is_void<_Ret>::value, _Ret, _… 213 template <class _Ret, bool = is_void<_Ret>::value>
|
H A D | is_convertible.h | 56 bool _IsVoid = is_void<_Tp>::value>
|
/freebsd/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/contrib/llvm-project/libcxx/include/__memory/ |
H A D | allocator.h | 94 class _LIBCPP_TEMPLATE_VIS allocator : private __non_trivial_if<!is_void<_Tp>::value, allocator<_Tp… 176 : private __non_trivial_if<!is_void<_Tp>::value, allocator<const _Tp> > {
|
H A D | pointer_traits.h | 141 pointer_to(__conditional_t<is_void<element_type>::value, __nat, element_type>& __r) { 170 pointer_to(__conditional_t<is_void<element_type>::value, __nat, element_type>& __r) _NOEXCEPT {
|
H A D | unique_ptr.h | 79 static_assert(!is_void<_Tp>::value, "cannot delete an incomplete type");
|
/freebsd/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/contrib/llvm-project/libcxx/include/__format/ |
H A D | formatter_integer.h | 50 …static_assert(!is_void<_Type>::value, "unsupported integral type used in __formatter_integer::__fo… in format()
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | bind.h | 257 is_void<_Rp>::value, 267 is_void<_Rp>::value,
|
H A D | function.h | 841 …is_void<_Rp>::value || __is_core_convertible<typename __invoke_of<_Fp, _ArgTypes...>::type, _Rp>::…
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Transformer/ |
H A D | Transformer.h | 178 } else if (std::is_void<T>::value) {
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | type_traits | 34 template <class T> struct is_void; 245 = is_void<T>::value; // C++17 478 #include <__type_traits/is_void.h>
|
H A D | any | 98 #include <__type_traits/is_void.h>
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 367 std::is_void<R>::value, // 1138 static_assert(std::is_void<Result>::value, "Result should be void."); 1380 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/contrib/googletest/googletest/include/gtest/ |
H A D | gtest-printers.h | 763 typename = typename std::enable_if<!std::is_void<T>::value &&
|
/freebsd/lib/libc++/ |
H A D | Makefile | 1307 TTR_HEADERS+= is_void.h
|