Home
last modified time | relevance | path

Searched refs:CHECK (Results 1 – 13 of 13) sorted by relevance

/ndk/tests/device/test-stlport_static-exception/jni/
Dnew1_3.cpp50 #define CHECK(cond) if(!(cond))throw line_error(__LINE__); macro
59 CHECK(false); //no copy constructors in this code in A()
93 CHECK(new_done==1); in test1()
94 CHECK(ctor_done==2); in test1()
95 CHECK(func_done==3); in test1()
96 CHECK(dtor_done==4); in test1()
97 CHECK(delete_done==0); in test1()
99 CHECK(ctor_done==1); in test1()
100 CHECK(new_done==2); in test1()
101 CHECK(func_done==3); in test1()
[all …]
/ndk/tests/device/test-stlport_shared-exception/jni/
Dnew1_3.cpp50 #define CHECK(cond) if(!(cond))throw line_error(__LINE__); macro
59 CHECK(false); //no copy constructors in this code in A()
93 CHECK(new_done==1); in test1()
94 CHECK(ctor_done==2); in test1()
95 CHECK(func_done==3); in test1()
96 CHECK(dtor_done==4); in test1()
97 CHECK(delete_done==0); in test1()
99 CHECK(ctor_done==1); in test1()
100 CHECK(new_done==2); in test1()
101 CHECK(func_done==3); in test1()
[all …]
/ndk/tests/device/test-cpufeatures/jni/
Dtest_cpufeatures.c49 #define CHECK(arch, name) \ in main() macro
59 CHECK(ARM, ARMv7) in main()
60 CHECK(ARM, VFPv3) in main()
61 CHECK(ARM, NEON) in main()
62 CHECK(ARM, LDREX_STREX) in main()
63 CHECK(ARM, VFPv2) in main()
64 CHECK(ARM, VFP_D32) in main()
65 CHECK(ARM, VFP_FP16) in main()
66 CHECK(ARM, VFP_FMA) in main()
67 CHECK(ARM, NEON_FMA) in main()
[all …]
/ndk/sources/cxx-stl/gabi++/tests/
Dtest_gabixx_rtti.cpp45 #define CHECK(cond) \ macro
63 CHECK(typeid(int) == typeid(i)); in main()
64 CHECK(typeid(int*) == typeid(pi)); in main()
65 CHECK(typeid(int) == typeid(*pi)); in main()
76 CHECK(typeid(derived) == typeid(Derived)); in main()
77 CHECK(typeid(pbase) == typeid(Base*)); in main()
78 CHECK(typeid(&derived) == typeid(Derived*)); in main()
87 CHECK(typeid(polyderived) == typeid(Poly_Derived)); in main()
88 CHECK(typeid(ppolybase) == typeid(Poly_Base*)); in main()
89 CHECK(typeid(polyderived) == typeid(*ppolybase)); in main()
/ndk/tests/device/test-stlport-rtti/jni/
Dtest_stlport_rtti.cpp45 #define CHECK(cond) \ macro
63 CHECK(typeid(int) == typeid(i)); in main()
64 CHECK(typeid(int*) == typeid(pi)); in main()
65 CHECK(typeid(int) == typeid(*pi)); in main()
76 CHECK(typeid(derived) == typeid(Derived)); in main()
77 CHECK(typeid(pbase) == typeid(Base*)); in main()
78 CHECK(typeid(&derived) == typeid(Derived*)); in main()
87 CHECK(typeid(polyderived) == typeid(Poly_Derived)); in main()
88 CHECK(typeid(ppolybase) == typeid(Poly_Base*)); in main()
89 CHECK(typeid(polyderived) == typeid(*ppolybase)); in main()
/ndk/tests/device/test-stlport/unit/
Dnum_put_get_test.cpp614 #define CHECK(type, val, base, expected) \ macro
621 CHECK(short, 0, oct, "0") in num_put_integer()
622 CHECK(short, 1, oct, "1") in num_put_integer()
623 CHECK(short, 12345, oct, "30071") in num_put_integer()
625 CHECK(short, -1, oct, "177777") in num_put_integer()
626 CHECK(short, -12345, oct, "147707") in num_put_integer()
629 CHECK(unsigned short, 0, oct, "0") in num_put_integer()
630 CHECK(unsigned short, 12345, oct, "30071") in num_put_integer()
632 CHECK(int, 0, oct, "0") in num_put_integer()
633 CHECK(int, 12345678, oct, "57060516") in num_put_integer()
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dnum_put_get_test.cpp614 #define CHECK(type, val, base, expected) \ macro
621 CHECK(short, 0, oct, "0") in num_put_integer()
622 CHECK(short, 1, oct, "1") in num_put_integer()
623 CHECK(short, 12345, oct, "30071") in num_put_integer()
625 CHECK(short, -1, oct, "177777") in num_put_integer()
626 CHECK(short, -12345, oct, "147707") in num_put_integer()
629 CHECK(unsigned short, 0, oct, "0") in num_put_integer()
630 CHECK(unsigned short, 12345, oct, "30071") in num_put_integer()
632 CHECK(int, 0, oct, "0") in num_put_integer()
633 CHECK(int, 12345678, oct, "57060516") in num_put_integer()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
Dtest_tools.hpp110 #define BOOST_CHECK( P ) BOOST_CHECK_IMPL( (P), BOOST_TEST_STRINGIZE( P ), CHECK
116 #define BOOST_CHECK_MESSAGE( P, M ) BOOST_CHECK_IMPL( (P), M, CHECK, CHECK_MSG )
140 #define BOOST_CHECK_THROW( S, E ) BOOST_CHECK_THROW_IMPL( S, E, true, "exception ", CHECK
146 …HECK_EXCEPTION( S, E, P ) BOOST_CHECK_THROW_IMPL( S, E, P( ex ), "incorrect exception ", CHECK )
161 #define BOOST_CHECK_NO_THROW( S ) BOOST_CHECK_NO_THROW_IMPL( S, CHECK )
169 …BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::equal_impl_frwd(), "", CHECK, CHECK_EQ…
178 …BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::ne_impl(), "", CHECK, CHECK_NE, (L)(R)…
187 …BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::lt_impl(), "", CHECK, CHECK_LT, (L)(R)…
196 …BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::le_impl(), "", CHECK, CHECK_LE, (L)(R)…
205 …BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::gt_impl(), "", CHECK, CHECK_GT, (L)(R)…
[all …]
/ndk/build/tools/
Dgen-platforms.sh254 CHECK=`var_value CHECK_$ARCH`
255 log " $ARCH check: $CHECK"
256 if [ "$CHECK" = no ] ; then
/ndk/sources/host-tools/make-3.81/config/
Dprogtest.m423 dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dtest_tools.ipp145 case CHECK:
363 case CHECK:
/ndk/tests/build/issue20862-libpng-O0/jni/
Dpngpriv.h372 # define CHECK 1 macro
374 # define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK))
/ndk/sources/host-tools/make-3.81/doc/
Dmake.texi49 @c ISPELL CHECK: done, 10 June 1993 --roland
50 @c ISPELL CHECK: done, 2000-06-25 --Martin Buchholz