/third_party/boost/libs/type_traits/test/ |
D | alignment_of_a2_test.cpp | 25 empty_UDT::empty_UDT(){} in empty_UDT() function in empty_UDT 26 empty_UDT::~empty_UDT(){} in ~empty_UDT() 27 empty_UDT::empty_UDT(const empty_UDT&){} in empty_UDT() argument 28 empty_UDT& empty_UDT::operator=(const empty_UDT&){ return *this; } in operator =() argument 29 bool empty_UDT::operator==(const empty_UDT&)const{ return true; } in operator ==() 111 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<empty_UDT>::value, ALIGNOF(empty_UDT));
|
D | alignment_of_test.cpp | 21 empty_UDT::empty_UDT(){} in empty_UDT() function in empty_UDT 22 empty_UDT::~empty_UDT(){} in ~empty_UDT() 23 empty_UDT::empty_UDT(const empty_UDT&){} in empty_UDT() argument 24 empty_UDT& empty_UDT::operator=(const empty_UDT&){ return *this; } in operator =() argument 25 bool empty_UDT::operator==(const empty_UDT&)const{ return true; } in operator ==() 106 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::alignment_of<empty_UDT>::value, ALIGNOF(empty_UDT));
|
D | test.hpp | 239 struct empty_UDT struct 241 empty_UDT(); 242 empty_UDT(const empty_UDT&); 243 ~empty_UDT(); 244 empty_UDT& operator=(const empty_UDT&); 245 bool operator==(const empty_UDT&)const;
|
D | is_empty_test.cpp | 36 BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::is_empty<empty_UDT>::value, true, false);
|
D | is_float_test.cpp | 39 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_float<empty_UDT>::value, false);
|
D | is_class_test.cpp | 51 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_class<empty_UDT>::value, true);
|
D | type_with_alignment_test.cpp | 94 TYPE_WITH_ALIGNMENT_TEST_EX(empty_UDT)
|
D | is_floating_point_test.cpp | 46 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_floating_point<empty_UDT>::value, false);
|
D | aligned_storage_empy_test.cpp | 115 do_check<empty_UDT>();
|
D | has_virtual_destructor_test.cpp | 39 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_virtual_destructor<empty_UDT>::value, false);
|
D | is_union_test.cpp | 54 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_union<empty_UDT>::value, false);
|
D | is_final_test.cpp | 71 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final<empty_UDT>::value, false);
|
D | is_polymorphic_test.cpp | 47 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_polymorphic<empty_UDT>::value, false);
|
D | is_assignable_test.cpp | 130 BOOST_CHECK_SOFT_INTEGRAL_CONSTANT((::tt::is_assignable<empty_UDT&>::value), true, false);
|
D | tricky_partial_spec_test.cpp | 81 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_polymorphic<volatile empty_UDT>::value, false);
|
D | aligned_storage_a2_test.cpp | 115 do_check(tt::integral_constant<std::size_t,::tt::alignment_of<empty_UDT>::value>());
|
D | aligned_storage_test.cpp | 103 do_check(tt::integral_constant<std::size_t,::tt::alignment_of<empty_UDT>::value>());
|
D | is_integral_test.cpp | 134 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_integral<empty_UDT>::value, false);
|
D | is_arithmetic_test.cpp | 136 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_arithmetic<empty_UDT>::value, false);
|
D | is_stateless_test.cpp | 153 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_stateless<empty_UDT>::value, false);
|
D | is_fundamental_test.cpp | 140 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_fundamental<empty_UDT>::value, false);
|
D | has_nothrow_assign_test.cpp | 215 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_assign<empty_UDT>::value, false);
|
D | has_trivial_destructor_test.cpp | 173 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_trivial_destructor<empty_UDT>::value, false);
|
D | is_destructible_test.cpp | 180 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_destructible<empty_UDT>::value, true);
|
/third_party/boost/libs/utility/test/ |
D | compressed_pair_test.cpp | 21 struct empty_UDT struct 23 ~empty_UDT(){}; in ~empty_UDT() argument 24 empty_UDT& operator=(const empty_UDT&){ return *this; } in operator =() argument 25 bool operator==(const empty_UDT&)const in operator ==() argument 334 empty_UDT e2; in main() 343 compressed_pair_tester<empty_POD_UDT,empty_UDT>::test(e1, e2, e1, e2); in main() 347 compressed_pair_tester<empty_UDT,empty_UDT>::test(e2, e2, e2, e2); in main()
|