Searched refs:is_default_constructible (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | is_implicitly_default_constructible.h | 30 template <class _Tp, class = void, class = typename is_default_constructible<_Tp>::type>
|
H A D | is_constructible.h | 50 struct _LIBCPP_TEMPLATE_VIS is_default_constructible : public integral_constant<bool, __is_construc… struct
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | compressed_pair.h | 111 __enable_if_t< __dependent_type<is_default_constructible<_T1>, _Dummy>::value && 112 __dependent_type<is_default_constructible<_T2>, _Dummy>::value,
|
H A D | unique_ptr.h | 173 __enable_if_t<is_default_constructible<_Deleter>::value && !is_pointer<_Deleter>::value>; 342 __enable_if_t<is_default_constructible<_Deleter>::value && !is_pointer<_Deleter>::value>;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ |
H A D | PassSupport.h | 83 std::enable_if_t<std::is_default_constructible<PassName>{}, bool> = true> 90 std::enable_if_t<!std::is_default_constructible<PassName>{}, bool> = true>
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | pair.h | 152 return is_default_constructible<_T1>::value && is_default_constructible<_T2>::value; in __enable_default()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | type_traits | 110 template <class T> struct is_default_constructible; 323 = is_default_constructible<T>::value; // C++17
|
H A D | tuple | 450 struct __all_default_constructible<__tuple_types<_Tp...>> : __all<is_default_constructible<_Tp>::va… 555 template <class...> class _IsDefault = is_default_constructible, 562 template <class...> class _IsDefault = is_default_constructible,
|
H A D | variant | 1188 … enable_if_t<__dependent_type<is_default_constructible<__first_type>, _Dummy>::value, int> = 0>
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | hash.h | 524 …constant<bool, __check_hash_requirements<_Key, _Hash>::value && is_default_constructible<_Hash>::v…
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 203 static bool Exists() { return ::std::is_default_constructible<T>::value; } 207 T, ::std::is_default_constructible<T>::value>::Get();
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 1640 SYMBOL(is_default_constructible, std::, <type_traits>)
|
/freebsd/ |
H A D | ObsoleteFiles.inc | 901 OLD_FILES+=usr/include/c++/v1/__type_traits/is_default_constructible.h
|