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);
1958 …{ int arr[F(__is_nothrow_constructible(HasNoThrowConstructorWithArgs))]; } // MSVC doesn't look in… in constructible_checks()1961 { int arr[T(__is_nothrow_constructible(HasNoThrowConstructorWithArgs, HasCons))]; } in constructible_checks()1964 { int arr[F(__is_nothrow_constructible(NonTrivialDefault))]; } in constructible_checks()1967 { int arr[T(__is_nothrow_constructible(int))]; } in constructible_checks()1970 { int arr[F(__is_nothrow_constructible(NonPOD))]; } in constructible_checks()1973 { int arr[F(__is_nothrow_constructible(NonPOD, int))]; } in constructible_checks()1977 { int arr[F(__is_nothrow_constructible(Abstract))]; } in constructible_checks()
381 TYPE_TRAIT_N(__is_nothrow_constructible, IsNothrowConstructible, KEYCXX)
786 REVERTIBLE_TYPE_TRAIT(__is_nothrow_constructible); in ParseCastExpression()
1024 * ``__is_nothrow_constructible`` (MSVC 2013, clang)
2900 : public integral_constant<bool, __is_nothrow_constructible(_Tp(_Args...))>