Searched refs:__is_constructible (Results 1 – 7 of 7) sorted by relevance
28 struct __is_constructible {}; // expected-warning {{made available}} struct
26 bool _is_constructible_result = __is_constructible(int);
1980 { int arr[T(__is_constructible(HasNoThrowConstructorWithArgs))]; } in constructible_checks()1983 { int arr[T(__is_constructible(HasNoThrowConstructorWithArgs, HasCons))]; } in constructible_checks()1986 { int arr[T(__is_constructible(NonTrivialDefault))]; } in constructible_checks()1989 { int arr[T(__is_constructible(int))]; } in constructible_checks()1992 { int arr[F(__is_constructible(NonPOD))]; } in constructible_checks()1995 { int arr[T(__is_constructible(NonPOD, int))]; } in constructible_checks()1999 { int arr[F(__is_constructible(Abstract))]; } in constructible_checks()2003 { int arr[T(__is_constructible(VariadicCtor, in constructible_checks()2007 { int arr[F(__is_constructible(int(int)))]; } in constructible_checks()
403 TYPE_TRAIT_N(__is_constructible, IsConstructible, KEYCXX)
795 REVERTIBLE_TYPE_TRAIT(__is_constructible); in ParseCastExpression()
1023 * ``__is_constructible`` (MSVC 2013, clang)
2375 : public integral_constant<bool, __is_constructible(_Tp, _Args...)>