Searched defs:cond (Results 1 - 7 of 7) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dcondition_variable.cpp78 notify_all_at_thread_exit(condition_variable& cond, unique_lock<mutex> lk) argument
80 __thread_local_data()->notify_all_at_thread_exit(&cond, lk.release());
/ndk/tests/device/test-stlport_shared-exception/jni/
H A Dpretty2.cpp57 __assert_fail (const char *cond, const char *file, unsigned int line, argument
/ndk/tests/device/test-stlport_static-exception/jni/
H A Dpretty2.cpp57 __assert_fail (const char *cond, const char *file, unsigned int line, argument
/ndk/tests/device/test-gnustl-full/unit/
H A Dlimits_test.cpp56 bool check_cond(const bool& cond) { return cond; } argument
/ndk/tests/device/test-stlport/unit/
H A Dlimits_test.cpp56 bool check_cond(const bool& cond) { return cond; } argument
/ndk/sources/host-tools/nawk-20071023/
H A Dlex.c439 int cond, low, mid, high; local
445 if ((cond = strcmp(w, kp[mid].word)) < 0)
447 else if (cond > 0)
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/
H A Doptional.hpp233 // Creates an optional<T> initialized with 'val' IFF cond is true, otherwise creates an uninitialzed optional<T>.
235 optional_base ( bool cond, argument_type val ) argument
239 if ( cond )
528 // Creates an optional<T> initialized with 'val' IFF cond is true, otherwise creates an uninitialized optional.
530 optional ( bool cond, argument_type val ) : base(cond,val) {} argument
666 // Returns optional<T>(cond,v)
669 optional<T> make_optional ( bool cond, T const& v ) argument
671 return optional<T>(cond,v);

Completed in 257 milliseconds