Home
last modified time | relevance | path

Searched refs:__is_constructible (Results 1 – 19 of 19) sorted by relevance

/external/llvm-project/clang/test/SemaCXX/
Dcxx11-default-member-initializers.cpp8 static_assert(!__is_constructible(X), "");
13 static_assert(__is_constructible(A::X), "");
Dsizeless-1.cpp505 _Static_assert(__is_constructible(svint8_t), ""); in cxx_only()
506 _Static_assert(__is_constructible(svint8_t, svint8_t), ""); in cxx_only()
507 _Static_assert(!__is_constructible(svint8_t, svint8_t, svint8_t), ""); in cxx_only()
508 _Static_assert(!__is_constructible(svint8_t, svint16_t), ""); in cxx_only()
Dtype-traits.cpp2277 { int arr[T(__is_constructible(HasNoThrowConstructorWithArgs))]; } in constructible_checks()
2280 { int arr[T(__is_constructible(HasNoThrowConstructorWithArgs, HasCons))]; } in constructible_checks()
2283 { int arr[T(__is_constructible(NonTrivialDefault))]; } in constructible_checks()
2286 { int arr[T(__is_constructible(int))]; } in constructible_checks()
2289 { int arr[F(__is_constructible(NonPOD))]; } in constructible_checks()
2292 { int arr[T(__is_constructible(NonPOD, int))]; } in constructible_checks()
2296 { int arr[F(__is_constructible(Abstract))]; } in constructible_checks()
2300 { int arr[T(__is_constructible(VariadicCtor, in constructible_checks()
2304 { int arr[F(__is_constructible(int(int)))]; } in constructible_checks()
2305 { int arr[T(__is_constructible(int const &, long))]; } in constructible_checks()
[all …]
/external/llvm-project/clang/test/Modules/Inputs/PR27401/
Da.h10 : integral_constant<bool, __is_constructible(_Tp)> {};
14 : integral_constant<bool, __is_constructible(_Tp, _Tp)> {};
/external/clang/test/Modules/Inputs/PR27401/
Da.h10 : integral_constant<bool, __is_constructible(_Tp)> {};
14 : integral_constant<bool, __is_constructible(_Tp, _Tp)> {};
/external/llvm-project/clang/test/AST/
Dast-dump-traits.cpp17 (void) __is_constructible(int, int, int, int); in test_type_trait()
/external/clang/test/PCH/
Dcxx-traits.h29 struct __is_constructible {}; // expected-warning {{made available}} struct
Dcxx-traits.cpp27 bool _is_constructible_result = __is_constructible(int);
/external/llvm-project/clang/test/PCH/
Dcxx-traits.h30 struct __is_constructible {}; // expected-warning {{made available}} struct
Dcxx-traits.cpp28 bool _is_constructible_result = __is_constructible(int);
/external/clang/test/SemaCXX/
Dtype-traits.cpp2023 { int arr[T(__is_constructible(HasNoThrowConstructorWithArgs))]; } in constructible_checks()
2026 { int arr[T(__is_constructible(HasNoThrowConstructorWithArgs, HasCons))]; } in constructible_checks()
2029 { int arr[T(__is_constructible(NonTrivialDefault))]; } in constructible_checks()
2032 { int arr[T(__is_constructible(int))]; } in constructible_checks()
2035 { int arr[F(__is_constructible(NonPOD))]; } in constructible_checks()
2038 { int arr[T(__is_constructible(NonPOD, int))]; } in constructible_checks()
2042 { int arr[F(__is_constructible(Abstract))]; } in constructible_checks()
2046 { int arr[T(__is_constructible(VariadicCtor, in constructible_checks()
2050 { int arr[F(__is_constructible(int(int)))]; } in constructible_checks()
/external/clang/include/clang/Basic/
DTokenKinds.def407 TYPE_TRAIT_N(__is_constructible, IsConstructible, KEYCXX)
/external/llvm-project/clang/include/clang/Basic/
DTokenKinds.def464 TYPE_TRAIT_N(__is_constructible, IsConstructible, KEYCXX)
/external/clang/lib/Parse/
DParseExpr.cpp809 REVERTIBLE_TYPE_TRAIT(__is_constructible); in ParseCastExpression()
/external/llvm-project/clang/lib/Parse/
DParseExpr.cpp1074 REVERTIBLE_TYPE_TRAIT(__is_constructible); in ParseCastExpression()
/external/llvm-project/clang/docs/
DLanguageExtensions.rst1155 * ``__is_constructible`` (C++, MSVC 2013)
1245 * ``__is_constructible``
/external/clang/docs/
DLanguageExtensions.rst1023 * ``__is_constructible`` (MSVC 2013, clang)
/external/llvm-project/libcxx/include/
Dtype_traits3008 : public integral_constant<bool, __is_constructible(_Tp, _Args...)>
/external/libcxx/include/
Dtype_traits3153 : public integral_constant<bool, __is_constructible(_Tp, _Args...)>