Home
last modified time | relevance | path

Searched refs:is_polymorphic (Results 1 – 25 of 31) sorted by relevance

12

/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
Dis_polymorphic.pass.cpp19 static_assert( std::is_polymorphic<T>::value, ""); in test_is_polymorphic()
20 static_assert( std::is_polymorphic<const T>::value, ""); in test_is_polymorphic()
21 static_assert( std::is_polymorphic<volatile T>::value, ""); in test_is_polymorphic()
22 static_assert( std::is_polymorphic<const volatile T>::value, ""); in test_is_polymorphic()
28 static_assert(!std::is_polymorphic<T>::value, ""); in test_is_not_polymorphic()
29 static_assert(!std::is_polymorphic<const T>::value, ""); in test_is_not_polymorphic()
30 static_assert(!std::is_polymorphic<volatile T>::value, ""); in test_is_not_polymorphic()
31 static_assert(!std::is_polymorphic<const volatile T>::value, ""); in test_is_not_polymorphic()
/external/clang/test/Lexer/
Dhas_feature_type_traits.cpp88 #if __has_feature(is_polymorphic)
89 int is_polymorphic();
/external/libcxx/test/std/language.support/support.exception/exception/
Dexception.pass.cpp18 static_assert(std::is_polymorphic<std::exception>::value, in main()
/external/libcxx/test/std/language.support/support.dynamic/alloc.errors/bad.alloc/
Dbad_alloc.pass.cpp20 static_assert(std::is_polymorphic<std::bad_alloc>::value, in main()
/external/libcxx/test/std/language.support/support.exception/bad.exception/
Dbad_exception.pass.cpp20 static_assert(std::is_polymorphic<std::bad_exception>::value, in main()
/external/libcxx/test/std/language.support/support.rtti/bad.typeid/
Dbad_typeid.pass.cpp20 static_assert(std::is_polymorphic<std::bad_typeid>::value, in main()
/external/libcxx/test/std/language.support/support.rtti/bad.cast/
Dbad_cast.pass.cpp20 static_assert(std::is_polymorphic<std::bad_cast>::value, in main()
/external/libcxx/test/std/language.support/support.dynamic/alloc.errors/new.badlength/
Dbad_array_new_length.pass.cpp20 static_assert(std::is_polymorphic<std::bad_array_new_length>::value, in main()
Dbad_array_length.pass.cpp21 static_assert(std::is_polymorphic<std::bad_array_length>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/logic.error/
Dlogic_error.pass.cpp22 static_assert(std::is_polymorphic<std::logic_error>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/runtime.error/
Druntime_error.pass.cpp22 static_assert(std::is_polymorphic<std::runtime_error>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/underflow.error/
Dunderflow_error.pass.cpp22 static_assert(std::is_polymorphic<std::underflow_error>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/domain.error/
Ddomain_error.pass.cpp22 static_assert(std::is_polymorphic<std::domain_error>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/length.error/
Dlength_error.pass.cpp22 static_assert(std::is_polymorphic<std::length_error>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/out.of.range/
Dout_of_range.pass.cpp22 static_assert(std::is_polymorphic<std::out_of_range>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/range.error/
Drange_error.pass.cpp22 static_assert(std::is_polymorphic<std::range_error>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/overflow.error/
Doverflow_error.pass.cpp22 static_assert(std::is_polymorphic<std::overflow_error>::value, in main()
/external/libcxx/test/std/diagnostics/std.exceptions/invalid.argument/
Dinvalid_argument.pass.cpp22 static_assert(std::is_polymorphic<std::invalid_argument>::value, in main()
/external/libcxx/include/
Dexception235 is_polymorphic<_Ep>::value
247 !is_polymorphic<_Ep>::value
Dtype_traits97 template <class T> struct is_polymorphic;
1015 // is_polymorphic
1017 #if __has_feature(is_polymorphic) || defined(_LIBCPP_MSVC)
1020 struct _LIBCPP_TYPE_VIS_ONLY is_polymorphic
1030 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_polymorphic
1033 #endif // __has_feature(is_polymorphic)
/external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/
Dmeta.unary.prop.pass.cpp132 static_assert(ex::is_polymorphic_v<T> == std::is_polymorphic<T>::value, ""); in type_properties_test()
137 static_assert(ex::is_polymorphic_v<T> == std::is_polymorphic<T>::value, ""); in type_properties_test()
/external/libcxx/include/experimental/
Dtype_traits88 = is_polymorphic<T>::value;
289 = is_polymorphic<_Tp>::value;
/external/v8/src/x87/
Dcode-stubs-x87.cc3833 Register feedback, bool is_polymorphic, in HandleArrayCases() argument
3856 __ j(not_equal, is_polymorphic ? &start_polymorphic : &next); in HandleArrayCases()
3866 if (!is_polymorphic) { in HandleArrayCases()
4076 bool is_polymorphic, Label* miss) { in HandlePolymorphicStoreCase() argument
4120 if (!is_polymorphic) { in HandlePolymorphicStoreCase()
/external/v8/src/ia32/
Dcode-stubs-ia32.cc4153 Register feedback, bool is_polymorphic, in HandleArrayCases() argument
4176 __ j(not_equal, is_polymorphic ? &start_polymorphic : &next); in HandleArrayCases()
4186 if (!is_polymorphic) { in HandleArrayCases()
4396 bool is_polymorphic, Label* miss) { in HandlePolymorphicStoreCase() argument
4440 if (!is_polymorphic) { in HandlePolymorphicStoreCase()
/external/clang/test/SemaCXX/
Dtype-traits.cpp379 void is_polymorphic() in is_polymorphic() function

12