Searched refs:__is_nothrow_constructible (Results 1 – 7 of 7) sorted by relevance
47 struct __is_nothrow_constructible {}; // expected-warning {{made available}} struct
46 bool _is_nothrow_constructible_result = __is_nothrow_constructible(int);
2024 …{ int arr[F(__is_nothrow_constructible(HasNoThrowConstructorWithArgs))]; } // MSVC doesn't look in… in constructible_checks()2027 { int arr[T(__is_nothrow_constructible(HasNoThrowConstructorWithArgs, HasCons))]; } in constructible_checks()2030 { int arr[F(__is_nothrow_constructible(NonTrivialDefault))]; } in constructible_checks()2033 { int arr[T(__is_nothrow_constructible(int))]; } in constructible_checks()2036 { int arr[F(__is_nothrow_constructible(NonPOD))]; } in constructible_checks()2039 { int arr[F(__is_nothrow_constructible(NonPOD, int))]; } in constructible_checks()2043 { int arr[F(__is_nothrow_constructible(Abstract))]; } in constructible_checks()
408 TYPE_TRAIT_N(__is_nothrow_constructible, IsNothrowConstructible, KEYCXX)
828 REVERTIBLE_TYPE_TRAIT(__is_nothrow_constructible); in ParseCastExpression()
1024 * ``__is_nothrow_constructible`` (MSVC 2013, clang)
3716 : public integral_constant<bool, __is_nothrow_constructible(_Tp(_Args...))>