Home
last modified time | relevance | path

Searched refs:MPL_ASSERT_NOT (Results 1 – 22 of 22) sorted by relevance

/third_party/boost/libs/mpl/test/
Dhas_xxx.cpp55 MPL_ASSERT_NOT(( has_xxx<int> )); in MPL_TEST_CASE()
56 MPL_ASSERT_NOT(( has_xxx_template<int> )); in MPL_TEST_CASE()
59 MPL_ASSERT_NOT(( has_xxx<int&> )); in MPL_TEST_CASE()
60 MPL_ASSERT_NOT(( has_xxx_template<int&> )); in MPL_TEST_CASE()
62 MPL_ASSERT_NOT(( has_xxx<int*> )); in MPL_TEST_CASE()
63 MPL_ASSERT_NOT(( has_xxx_template<int*> )); in MPL_TEST_CASE()
65 MPL_ASSERT_NOT(( has_xxx<int[]> )); in MPL_TEST_CASE()
66 MPL_ASSERT_NOT(( has_xxx_template<int[]> )); in MPL_TEST_CASE()
68 MPL_ASSERT_NOT(( has_xxx<int (*)()> )); in MPL_TEST_CASE()
69 MPL_ASSERT_NOT(( has_xxx_template<int (*)()> )); in MPL_TEST_CASE()
[all …]
Dset.cpp48 MPL_ASSERT_NOT(( has_key<s,int> )); in empty_set_test()
49 MPL_ASSERT_NOT(( has_key<s,char> )); in empty_set_test()
50 MPL_ASSERT_NOT(( has_key<s,long> )); in empty_set_test()
71 MPL_ASSERT_NOT(( empty<s> )); in int_set_test()
79 MPL_ASSERT_NOT(( has_key<s,char> )); in int_set_test()
80 MPL_ASSERT_NOT(( has_key<s,long> )); in int_set_test()
85 MPL_ASSERT_NOT(( is_same< o1, void_ > )); in int_set_test()
104 MPL_ASSERT_NOT(( empty<s> )); in int_char_set_test()
110 MPL_ASSERT_NOT(( has_key<s,long> )); in int_char_set_test()
115 MPL_ASSERT_NOT(( is_same< o1, void_ > )); in int_char_set_test()
[all …]
Dmap.cpp42 MPL_ASSERT_NOT(( empty<m> )); in MPL_TEST_CASE()
48 MPL_ASSERT_NOT(( contains< m,mpl::pair<int,int> > )); in MPL_TEST_CASE()
49 MPL_ASSERT_NOT(( contains< m,mpl::pair<char,unsigned char> > )); in MPL_TEST_CASE()
51 MPL_ASSERT_NOT(( has_key<m,char>::type )); in MPL_TEST_CASE()
54 MPL_ASSERT_NOT(( is_same< order<m,int>::type, void_ > )); in MPL_TEST_CASE()
66 MPL_ASSERT_NOT(( empty<m2>::type )); in MPL_TEST_CASE()
72 MPL_ASSERT_NOT(( contains< m2,mpl::pair<int,int> > )); in MPL_TEST_CASE()
73 MPL_ASSERT_NOT(( contains< m2,mpl::pair<char,unsigned char> > )); in MPL_TEST_CASE()
77 MPL_ASSERT_NOT(( has_key<m2,long>::type )); in MPL_TEST_CASE()
78 MPL_ASSERT_NOT(( is_same< order<m2,int>::type, void_ > )); in MPL_TEST_CASE()
[all …]
Dcomparison.cpp26 MPL_ASSERT_NOT(( equal_to<_0, _10> )); in MPL_TEST_CASE()
27 MPL_ASSERT_NOT(( equal_to<_10, _0> )); in MPL_TEST_CASE()
35 MPL_ASSERT_NOT(( not_equal_to<_10, _10> )); in MPL_TEST_CASE()
41 MPL_ASSERT_NOT(( less<_10, _0> )); in MPL_TEST_CASE()
42 MPL_ASSERT_NOT(( less<_10, _10> )); in MPL_TEST_CASE()
48 MPL_ASSERT_NOT(( less_equal<_10, _0> )); in MPL_TEST_CASE()
55 MPL_ASSERT_NOT(( greater<_0, _10> )); in MPL_TEST_CASE()
56 MPL_ASSERT_NOT(( greater<_10, _10> )); in MPL_TEST_CASE()
61 MPL_ASSERT_NOT(( greater_equal<_0, _10> )); in MPL_TEST_CASE()
Dlogical.cpp26 MPL_ASSERT_NOT(( mpl::and_< false_,true_ > )); in MPL_TEST_CASE()
27 MPL_ASSERT_NOT(( mpl::and_< true_,false_ > )); in MPL_TEST_CASE()
28 MPL_ASSERT_NOT(( mpl::and_< false_,false_ > )); in MPL_TEST_CASE()
29 MPL_ASSERT_NOT(( mpl::and_< false_,unknown > )); in MPL_TEST_CASE()
30 MPL_ASSERT_NOT(( mpl::and_< false_,unknown,unknown > )); in MPL_TEST_CASE()
35 MPL_ASSERT_NOT(( mpl::or_< false_,false_ > )); in MPL_TEST_CASE()
39 MPL_ASSERT_NOT(( mpl::not_< true_ > )); in MPL_TEST_CASE()
Dis_sequence.cpp28 MPL_ASSERT_NOT(( is_sequence< std_vector<int> > )); in MPL_TEST_CASE()
29 MPL_ASSERT_NOT(( is_sequence< int_<0> > )); in MPL_TEST_CASE()
30 MPL_ASSERT_NOT(( is_sequence< int > )); in MPL_TEST_CASE()
31 MPL_ASSERT_NOT(( is_sequence< int& > )); in MPL_TEST_CASE()
32 MPL_ASSERT_NOT(( is_sequence< UDT > )); in MPL_TEST_CASE()
33 MPL_ASSERT_NOT(( is_sequence< UDT* > )); in MPL_TEST_CASE()
Dis_placeholder.cpp30 MPL_ASSERT_NOT(( is_placeholder<int> )); in MPL_TEST_CASE()
31 MPL_ASSERT_NOT(( is_placeholder<UDT> )); in MPL_TEST_CASE()
32 MPL_ASSERT_NOT(( is_placeholder<incomplete> )); in MPL_TEST_CASE()
33 MPL_ASSERT_NOT(( is_placeholder<abstract> )); in MPL_TEST_CASE()
34 MPL_ASSERT_NOT(( is_placeholder<noncopyable> )); in MPL_TEST_CASE()
Dlambda.cpp46 MPL_ASSERT_NOT(( apply_wrap1<f,char> )); in MPL_TEST_CASE()
47 MPL_ASSERT_NOT(( apply_wrap1<f,double> )); in MPL_TEST_CASE()
63 MPL_ASSERT_NOT(( apply_wrap2<f,double,char> )); in MPL_TEST_CASE()
64 MPL_ASSERT_NOT(( apply_wrap2<f,my,int> )); in MPL_TEST_CASE()
65 MPL_ASSERT_NOT(( apply_wrap2<f,my,char[99]> )); in MPL_TEST_CASE()
Drange_c.cpp34 MPL_ASSERT_NOT(( empty<range1> )); in MPL_TEST_CASE()
35 MPL_ASSERT_NOT(( empty<range10> )); in MPL_TEST_CASE()
38 MPL_ASSERT_NOT(( is_same<begin<range1>::type, end<range1>::type > )); in MPL_TEST_CASE()
39 MPL_ASSERT_NOT(( is_same<begin<range10>::type, end<range10>::type > )); in MPL_TEST_CASE()
Dequal.cpp28 MPL_ASSERT_NOT(( equal<list2,list3> )); in MPL_TEST_CASE()
29 MPL_ASSERT_NOT(( equal<list3,list4> )); in MPL_TEST_CASE()
30 MPL_ASSERT_NOT(( equal<list4,list3> )); in MPL_TEST_CASE()
Dlist.cpp37 MPL_ASSERT_NOT(( empty<l1> )); in MPL_TEST_CASE()
38 MPL_ASSERT_NOT(( empty<l2> )); in MPL_TEST_CASE()
39 MPL_ASSERT_NOT(( empty<l9> )); in MPL_TEST_CASE()
Dno_has_xxx.cpp23 # define HAS_XXX_ASSERT(x) MPL_ASSERT_NOT(x)
27 # define HAS_XXX_TEMPLATE_ASSERT(x) MPL_ASSERT_NOT(x)
Ddeque.cpp40 MPL_ASSERT_NOT(( empty<d1> )); in MPL_TEST_CASE()
41 MPL_ASSERT_NOT(( empty<d2> )); in MPL_TEST_CASE()
42 MPL_ASSERT_NOT(( empty<d9> )); in MPL_TEST_CASE()
Dpush_front.cpp47 MPL_ASSERT_NOT(( has_push_back< list0<> > )); in MPL_TEST_CASE()
49 MPL_ASSERT_NOT(( has_push_front< no_push_front > )); in MPL_TEST_CASE()
Dvector.cpp47 MPL_ASSERT_NOT(( empty<v1> )); in MPL_TEST_CASE()
48 MPL_ASSERT_NOT(( empty<v2> )); in MPL_TEST_CASE()
49 MPL_ASSERT_NOT(( empty<v9> )); in MPL_TEST_CASE()
Dnumeric_ops.cpp147 MPL_ASSERT_NOT(( equal_to<c1,c2> )); in MPL_TEST_CASE()
152 MPL_ASSERT_NOT(( equal_to<c1,i> )); in MPL_TEST_CASE()
153 MPL_ASSERT_NOT(( equal_to<i,c2> )); in MPL_TEST_CASE()
Dsame_as.cpp22 MPL_ASSERT_NOT(( apply1< same_as<int>,long > )); in MPL_TEST_CASE()
Dempty.cpp22 MPL_ASSERT_NOT(( empty< list1<char> > )); in MPL_TEST_CASE()
Dcontains.cpp23 MPL_ASSERT_NOT(( contains< types,unsigned > )); in MPL_TEST_CASE()
Dpush_back.cpp47 MPL_ASSERT_NOT(( has_push_back< no_push_back > )); in MPL_TEST_CASE()
/third_party/boost/libs/mpl/test/aux_/
Dmsvc_is_class.cpp26 MPL_ASSERT_NOT(( aux::msvc_is_class< int > )); in MPL_TEST_CASE()
27 MPL_ASSERT_NOT(( aux::msvc_is_class< char > )); in MPL_TEST_CASE()
28 MPL_ASSERT_NOT(( aux::msvc_is_class< enum_ > )); in MPL_TEST_CASE()
29 MPL_ASSERT_NOT(( aux::msvc_is_class< char* > )); in MPL_TEST_CASE()
30 MPL_ASSERT_NOT(( aux::msvc_is_class< UDT* > )); in MPL_TEST_CASE()
31 MPL_ASSERT_NOT(( aux::msvc_is_class< UDT& > )); in MPL_TEST_CASE()
32 MPL_ASSERT_NOT(( aux::msvc_is_class< incomplete* > )); in MPL_TEST_CASE()
33 MPL_ASSERT_NOT(( aux::msvc_is_class< incomplete& > )); in MPL_TEST_CASE()
34 MPL_ASSERT_NOT(( aux::msvc_is_class< int[5] > )); in MPL_TEST_CASE()
35 MPL_ASSERT_NOT(( aux::msvc_is_class< void (*)() > )); in MPL_TEST_CASE()
[all …]
/third_party/boost/boost/mpl/aux_/test/
Dassert.hpp21 #define MPL_ASSERT_NOT(pred) BOOST_MPL_ASSERT_NOT(pred) macro