Home | History | Annotate | Download | only in test

Lines Matching refs:is_same

21   VERIFY(( internal::is_same<float,float>::value));
22 VERIFY((!internal::is_same<float,double>::value));
23 VERIFY((!internal::is_same<float,float&>::value));
24 VERIFY((!internal::is_same<float,const float&>::value));
26 VERIFY(( internal::is_same<float,internal::remove_all<const float&>::type >::value));
27 VERIFY(( internal::is_same<float,internal::remove_all<const float*>::type >::value));
28 VERIFY(( internal::is_same<float,internal::remove_all<const float*&>::type >::value));
29 VERIFY(( internal::is_same<float,internal::remove_all<float**>::type >::value));
30 VERIFY(( internal::is_same<float,internal::remove_all<float**&>::type >::value));
31 VERIFY(( internal::is_same<float,internal::remove_all<float* const *&>::type >::value));
32 VERIFY(( internal::is_same<float,internal::remove_all<float* const>::type >::value));
35 VERIFY(( internal::is_same< internal::add_const<float>::type, const float >::value));
36 VERIFY(( internal::is_same< internal::add_const<float*>::type, float* const>::value));
37 VERIFY(( internal::is_same< internal::add_const<float const*>::type, float const* const>::value));
38 VERIFY(( internal::is_same< internal::add_const<float&>::type, float& >::value));
41 VERIFY(( internal::is_same< internal::remove_const<float const* const>::type, float const* >::value));
42 VERIFY(( internal::is_same< internal::remove_const<float const*>::type, float const* >::value));
43 VERIFY(( internal::is_same< internal::remove_const<float* const>::type, float* >::value));
46 VERIFY(( internal::is_same< internal::add_const_on_value_type<float&>::type, float const& >::value));
47 VERIFY(( internal::is_same< internal::add_const_on_value_type<float*>::type, float const* >::value));
49 VERIFY(( internal::is_same< internal::add_const_on_value_type<float>::type, const float >::value));
50 VERIFY(( internal::is_same< internal::add_const_on_value_type<const float>::type, const float >::value));
52 VERIFY(( internal::is_same< internal::add_const_on_value_type<const float* const>::type, const float* const>::value));
53 VERIFY(( internal::is_same< internal::add_const_on_value_type<float* const>::type, const float* const>::value));
55 VERIFY(( internal::is_same<float,internal::remove_reference<float&>::type >::value));
56 VERIFY(( internal::is_same<const float,internal::remove_reference<const float&>::type >::value));
57 VERIFY(( internal::is_same<float,internal::remove_pointer<float*>::type >::value));
58 VERIFY(( internal::is_same<const float,internal::remove_pointer<const float*>::type >::value));
59 VERIFY(( internal::is_same<float,internal::remove_pointer<float* const >::type >::value));