Home
last modified time | relevance | path

Searched defs:cond (Results 1 – 14 of 14) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/punctuation/
Dcomma_if.hpp25 # define BOOST_PP_COMMA_IF(cond) BOOST_PP_IF(cond, BOOST_PP_COMMA, BOOST_PP_EMPTY)() argument
27 # define BOOST_PP_COMMA_IF(cond) BOOST_PP_COMMA_IF_I(cond) argument
28 # define BOOST_PP_COMMA_IF_I(cond) BOOST_PP_IF(cond, BOOST_PP_COMMA, BOOST_PP_EMPTY)() argument
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/control/
Dif.hpp24 # define BOOST_PP_IF(cond, t, f) BOOST_PP_IIF(BOOST_PP_BOOL(cond), t, f) argument
26 # define BOOST_PP_IF(cond, t, f) BOOST_PP_IF_I(cond, t, f) argument
27 # define BOOST_PP_IF_I(cond, t, f) BOOST_PP_IIF(BOOST_PP_BOOL(cond), t, f) argument
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
Dframework.hpp97 #define BOOST_TEST_SETUP_ASSERT( cond, msg ) if( cond ) {} else throw unit_test::framework::setup_e… argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dcondition_variable.cpp78 notify_all_at_thread_exit(condition_variable& cond, unique_lock<mutex> lk) in notify_all_at_thread_exit()
/ndk/tests/device/test-stlport_shared-exception/jni/
Dpretty2.cpp57 __assert_fail (const char *cond, const char *file, unsigned int line, in __assert_fail()
Dnew1_3.cpp50 #define CHECK(cond) if(!(cond))throw line_error(__LINE__); argument
/ndk/sources/cxx-stl/gabi++/tests/
Dtest_gabixx_rtti.cpp45 #define CHECK(cond) \ argument
/ndk/tests/device/test-stlport-rtti/jni/
Dtest_stlport_rtti.cpp45 #define CHECK(cond) \ argument
/ndk/tests/device/test-stlport_static-exception/jni/
Dpretty2.cpp57 __assert_fail (const char *cond, const char *file, unsigned int line, in __assert_fail()
Dnew1_3.cpp50 #define CHECK(cond) if(!(cond))throw line_error(__LINE__); argument
/ndk/tests/device/test-stlport/unit/
Dlimits_test.cpp56 bool check_cond(const bool& cond) { return cond; } in check_cond()
/ndk/tests/device/test-gnustl-full/unit/
Dlimits_test.cpp56 bool check_cond(const bool& cond) { return cond; } in check_cond()
/ndk/sources/host-tools/nawk-20071023/
Dlex.c439 int cond, low, mid, high; in binsearch() local
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/
Doptional.hpp235 optional_base ( bool cond, argument_type val ) in optional_base()
530 optional ( bool cond, argument_type val ) : base(cond,val) {} in optional()
669 optional<T> make_optional ( bool cond, T const& v ) in make_optional()