Home
last modified time | relevance | path

Searched refs:is_nothrow_constructible (Results 1 – 20 of 20) sorted by relevance

/freebsd-head/contrib/llvm-project/libcxx/include/__type_traits/
HDis_nothrow_constructible.h31 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/
HDpair.h193 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()
212is_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()
227is_nothrow_constructible<second_type, const _U2&&>::value) in pair()
[all …]
/freebsd-head/contrib/llvm-project/libcxx/include/
HDtuple245 #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> {};
HDtype_traits129 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>
HDany95 #include <__type_traits/is_nothrow_constructible.h>
HD__split_buffer31 #include <__type_traits/is_nothrow_constructible.h>
HDarray130 #include <__type_traits/is_nothrow_constructible.h>
HDforward_list224 #include <__type_traits/is_nothrow_constructible.h>
HDoptional204 #include <__type_traits/is_nothrow_constructible.h>
HDvariant239 #include <__type_traits/is_nothrow_constructible.h>
HDlist230 #include <__type_traits/is_nothrow_constructible.h>
HDmodule.modulemap1984 header "__type_traits/is_nothrow_constructible.h"
HD__hash_table33 #include <__type_traits/is_nothrow_constructible.h>
HD__tree31 #include <__type_traits/is_nothrow_constructible.h>
HDstring627 #include <__type_traits/is_nothrow_constructible.h>
/freebsd-head/contrib/llvm-project/libcxx/modules/std/
HDtype_traits.inc87 using std::is_nothrow_constructible;
/freebsd-head/lib/libc++/
DMakefile1275 TTR_HEADERS+= is_nothrow_constructible.h
Dlibcxx.imp781 …{ include: [ "<__type_traits/is_nothrow_constructible.h>", "private", "<type_traits>", "public" ] …
/freebsd-head/contrib/llvm-project/libcxx/include/__expected/
HDexpected.h687 is_nothrow_constructible<_Err, _OtherErrQual>,
/freebsd-head/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
HDStdSymbolMap.inc1693 SYMBOL(is_nothrow_constructible, std::, <type_traits>)