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.cpp1958 …{ 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()
/external/clang/include/clang/Basic/
DTokenKinds.def381 TYPE_TRAIT_N(__is_nothrow_constructible, IsNothrowConstructible, KEYCXX)
/external/clang/lib/Parse/
DParseExpr.cpp786 REVERTIBLE_TYPE_TRAIT(__is_nothrow_constructible); in ParseCastExpression()
/external/clang/docs/
DLanguageExtensions.rst1024 * ``__is_nothrow_constructible`` (MSVC 2013, clang)
/external/libcxx/include/
Dtype_traits2900 : public integral_constant<bool, __is_nothrow_constructible(_Tp(_Args...))>