Home
last modified time | relevance | path

Searched refs:__is_nothrow_constructible (Results 1 – 7 of 7) sorted by relevance

/external/clang/test/PCH/
Dcxx-traits.h46 struct __is_nothrow_constructible {}; // expected-warning {{made available}} struct
Dcxx-traits.cpp45 bool _is_nothrow_constructible_result = __is_nothrow_constructible(int);
/external/clang/test/SemaCXX/
Dtype-traits.cpp1981 …{ 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()
/external/clang/include/clang/Basic/
DTokenKinds.def404 TYPE_TRAIT_N(__is_nothrow_constructible, IsNothrowConstructible, KEYCXX)
/external/clang/lib/Parse/
DParseExpr.cpp814 REVERTIBLE_TYPE_TRAIT(__is_nothrow_constructible); in ParseCastExpression()
/external/clang/docs/
DLanguageExtensions.rst1024 * ``__is_nothrow_constructible`` (MSVC 2013, clang)
/external/libcxx/include/
Dtype_traits2930 : public integral_constant<bool, __is_nothrow_constructible(_Tp(_Args...))>