Searched refs:is_nothrow_constructible (Results 1 – 20 of 20) sorted by relevance
| /freebsd-head/contrib/llvm-project/libcxx/include/__type_traits/ |
| HD | is_nothrow_constructible.h | 31 struct _LIBCPP_TEMPLATE_VIS is_nothrow_constructible struct 54 struct _LIBCPP_TEMPLATE_VIS is_nothrow_constructible 61 struct _LIBCPP_TEMPLATE_VIS is_nothrow_constructible<_Tp[_Ns]> 68 inline constexpr bool is_nothrow_constructible_v = is_nothrow_constructible<_Tp, _Args...>::value; 76 : public is_nothrow_constructible<_Tp, __add_lvalue_reference_t<const _Tp> > {}; 102 : public is_nothrow_constructible<_Tp, __add_rvalue_reference_t<_Tp> > {};
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__utility/ |
| HD | pair.h | 193 pair(_U1&& __u1, _U2&& __u2) noexcept(is_nothrow_constructible<first_type, _U1>::value && in pair() 194 is_nothrow_constructible<second_type, _U2>::value) in pair() 201 pair(pair<_U1, _U2>& __p) noexcept((is_nothrow_constructible<first_type, _U1&>::value && in pair() 202 is_nothrow_constructible<second_type, _U2&>::value)) in pair() 211 …pair(pair<_U1, _U2> const& __p) noexcept(is_nothrow_constructible<first_type, _U1 const&>::value && in pair() 212 … is_nothrow_constructible<second_type, _U2 const&>::value) in pair() 217 pair(pair<_U1, _U2>&& __p) noexcept(is_nothrow_constructible<first_type, _U1&&>::value && in pair() 218 is_nothrow_constructible<second_type, _U2&&>::value) in pair() 226 …pair(const pair<_U1, _U2>&& __p) noexcept(is_nothrow_constructible<first_type, const _U1&&>::value… in pair() 227 … is_nothrow_constructible<second_type, const _U2&&>::value) in pair() [all …]
|
| /freebsd-head/contrib/llvm-project/libcxx/include/ |
| HD | tuple | 245 #include <__type_traits/is_nothrow_constructible.h> 339 …_LIBCPP_CONSTEXPR_SINCE_CXX14 explicit __tuple_leaf(_Tp&& __t) noexcept(is_nothrow_constructible<_… 407 …_LIBCPP_CONSTEXPR_SINCE_CXX14 explicit __tuple_leaf(_Tp&& __t) noexcept(is_nothrow_constructible<_… 469 _Up&&... __u) noexcept(__all<is_nothrow_constructible<_Tf, _Up>::value...>::value && 487 (__all<is_nothrow_constructible< 615 tuple(_Up&&... __u) noexcept(_And<is_nothrow_constructible<_Tp, _Up>...>::value) 682 …tuple(const tuple<_Up...>& __t) noexcept(_And<is_nothrow_constructible<_Tp, const _Up&>...>::value) 709 tuple(tuple<_Up...>&& __t) noexcept(_And<is_nothrow_constructible<_Tp, _Up>...>::value) 751 struct _NothrowConstructibleFromPair : _CtorPredicateFromPair<is_nothrow_constructible, _Pair> {};
|
| HD | type_traits | 129 template <class T, class... Args> struct is_nothrow_constructible; 357 = is_nothrow_constructible<T, Args...>::value; // C++17 460 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | any | 95 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | __split_buffer | 31 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | array | 130 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | forward_list | 224 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | optional | 204 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | variant | 239 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | list | 230 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | module.modulemap | 1984 header "__type_traits/is_nothrow_constructible.h"
|
| HD | __hash_table | 33 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | __tree | 31 #include <__type_traits/is_nothrow_constructible.h>
|
| HD | string | 627 #include <__type_traits/is_nothrow_constructible.h>
|
| /freebsd-head/contrib/llvm-project/libcxx/modules/std/ |
| HD | type_traits.inc | 87 using std::is_nothrow_constructible;
|
| /freebsd-head/lib/libc++/ |
| D | Makefile | 1275 TTR_HEADERS+= is_nothrow_constructible.h
|
| D | libcxx.imp | 781 …{ include: [ "<__type_traits/is_nothrow_constructible.h>", "private", "<type_traits>", "public" ] …
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__expected/ |
| HD | expected.h | 687 is_nothrow_constructible<_Err, _OtherErrQual>,
|
| /freebsd-head/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
| HD | StdSymbolMap.inc | 1693 SYMBOL(is_nothrow_constructible, std::, <type_traits>)
|