Home
last modified time | relevance | path

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

/external/clang/test/PCH/
Dcxx-traits.h47 struct __is_nothrow_constructible {}; // expected-warning {{made available}} struct
Dcxx-traits.cpp46 bool _is_nothrow_constructible_result = __is_nothrow_constructible(int);
/external/llvm-project/clang/test/PCH/
Dcxx-traits.h48 struct __is_nothrow_constructible {}; // expected-warning {{made available}} struct
Dcxx-traits.cpp47 bool _is_nothrow_constructible_result = __is_nothrow_constructible(int);
/external/llvm-project/clang/test/SemaCXX/
Dsizeless-1.cpp509 _Static_assert(__is_nothrow_constructible(svint8_t), ""); in cxx_only()
510 _Static_assert(__is_nothrow_constructible(svint8_t, svint8_t), ""); in cxx_only()
511 _Static_assert(!__is_nothrow_constructible(svint8_t, svint16_t), ""); in cxx_only()
Dtype-traits.cpp2278 …{ int arr[F(__is_nothrow_constructible(HasNoThrowConstructorWithArgs))]; } // MSVC doesn't look in… in constructible_checks()
2281 { int arr[T(__is_nothrow_constructible(HasNoThrowConstructorWithArgs, HasCons))]; } in constructible_checks()
2284 { int arr[F(__is_nothrow_constructible(NonTrivialDefault))]; } in constructible_checks()
2287 { int arr[T(__is_nothrow_constructible(int))]; } in constructible_checks()
2290 { int arr[F(__is_nothrow_constructible(NonPOD))]; } in constructible_checks()
2293 { int arr[F(__is_nothrow_constructible(NonPOD, int))]; } in constructible_checks()
2297 { int arr[F(__is_nothrow_constructible(Abstract))]; } in constructible_checks()
2308 { int arr[T(__is_nothrow_constructible(ACompleteType))]; } in constructible_checks()
2310 …{ int arr[F(__is_nothrow_constructible(AnIncompleteType))]; } // expected-error {{incomplete type}} in constructible_checks()
2312 { int arr[F(__is_nothrow_constructible(AnIncompleteType[]))]; } in constructible_checks()
[all …]
/external/clang/test/SemaCXX/
Dtype-traits.cpp2024 …{ 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()
/external/clang/include/clang/Basic/
DTokenKinds.def408 TYPE_TRAIT_N(__is_nothrow_constructible, IsNothrowConstructible, KEYCXX)
/external/llvm-project/clang/include/clang/Basic/
DTokenKinds.def465 TYPE_TRAIT_N(__is_nothrow_constructible, IsNothrowConstructible, KEYCXX)
/external/clang/lib/Parse/
DParseExpr.cpp828 REVERTIBLE_TYPE_TRAIT(__is_nothrow_constructible); in ParseCastExpression()
/external/llvm-project/clang/lib/Parse/
DParseExpr.cpp1093 REVERTIBLE_TYPE_TRAIT(__is_nothrow_constructible); in ParseCastExpression()
/external/llvm-project/clang/docs/
DLanguageExtensions.rst1125 Deprecated, use ``__is_nothrow_constructible`` instead.
1127 Deprecated, use ``__is_nothrow_constructible`` instead.
1180 * ``__is_nothrow_constructible`` (C++, MSVC 2013)
/external/llvm-project/libcxx/include/
Dtype_traits3275 #if __has_keyword(__is_nothrow_constructible)
3279 : public integral_constant<bool, __is_nothrow_constructible(_Tp, _Args...)> {};
/external/clang/docs/
DLanguageExtensions.rst1024 * ``__is_nothrow_constructible`` (MSVC 2013, clang)
/external/libcxx/include/
Dtype_traits3716 : public integral_constant<bool, __is_nothrow_constructible(_Tp(_Args...))>