/ndk/tests/device/test-stlport_static-exception/jni/ |
D | new1_3.cpp | 50 #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/ |
D | new1_3.cpp | 50 #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/ |
D | test_cpufeatures.c | 49 #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/ |
D | test_gabixx_rtti.cpp | 45 #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/ |
D | test_stlport_rtti.cpp | 45 #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/ |
D | num_put_get_test.cpp | 614 #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/ |
D | num_put_get_test.cpp | 614 #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/ |
D | test_tools.hpp | 110 #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/ |
D | gen-platforms.sh | 254 CHECK=`var_value CHECK_$ARCH` 255 log " $ARCH check: $CHECK" 256 if [ "$CHECK" = no ] ; then
|
/ndk/sources/host-tools/make-3.81/config/ |
D | progtest.m4 | 23 dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | test_tools.ipp | 145 case CHECK: 363 case CHECK:
|
/ndk/tests/build/issue20862-libpng-O0/jni/ |
D | pngpriv.h | 372 # 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/ |
D | make.texi | 49 @c ISPELL CHECK: done, 10 June 1993 --roland 50 @c ISPELL CHECK: done, 2000-06-25 --Martin Buchholz
|