Searched refs:__is_nothrow_constructible (Results 1 – 7 of 7) sorted by relevance
46 struct __is_nothrow_constructible {}; // expected-warning {{made available}} struct
45 bool _is_nothrow_constructible_result = __is_nothrow_constructible(int);
1981 …{ int arr[F(__is_nothrow_constructible(HasNoThrowConstructorWithArgs))]; } // MSVC doesn't look in… in constructible_checks()1984 { int arr[T(__is_nothrow_constructible(HasNoThrowConstructorWithArgs, HasCons))]; } in constructible_checks()1987 { int arr[F(__is_nothrow_constructible(NonTrivialDefault))]; } in constructible_checks()1990 { int arr[T(__is_nothrow_constructible(int))]; } in constructible_checks()1993 { int arr[F(__is_nothrow_constructible(NonPOD))]; } in constructible_checks()1996 { int arr[F(__is_nothrow_constructible(NonPOD, int))]; } in constructible_checks()2000 { int arr[F(__is_nothrow_constructible(Abstract))]; } in constructible_checks()
404 TYPE_TRAIT_N(__is_nothrow_constructible, IsNothrowConstructible, KEYCXX)
814 REVERTIBLE_TYPE_TRAIT(__is_nothrow_constructible); in ParseCastExpression()
1024 * ``__is_nothrow_constructible`` (MSVC 2013, clang)
2930 : public integral_constant<bool, __is_nothrow_constructible(_Tp(_Args...))>