HomeSort by relevance Sort by last modified time
    Searched refs:cond_ (Results 1 - 5 of 5) sorted by null

  /external/qemu/android/utils/
assert.h 57 #define _ANDROID_ASSERT_BOOL(cond_,expected_) \
59 int cond_result_ = !!(cond_); \
64 #cond_, \
71 #define _ANDROID_ASSERT_INT(cond_,expected_) \
73 int cond_result_ = (cond_); \
78 #cond_ , cond_result_, cond_expected_); \
82 #define _ANDROID_ASSERT_INT_OP(cond_,expected_,op_) \
84 int cond_result_ = (cond_); \
89 #cond_ , cond_result_, #op_, cond_expected_); \
93 # define _ANDROID_ASSERT_PTR(cond_,expected_)
    [all...]
  /external/v8/src/
ast-inl.h 71 cond_(NULL),
80 cond_(NULL),
89 cond_(NULL),
ast.h 424 cond_ = cond;
427 Expression* cond() const { return cond_; }
441 Expression* cond_; member in class:v8::internal::DoWhileStatement
456 cond_ = cond;
459 Expression* cond() const { return cond_; }
473 Expression* cond_; member in class:v8::internal::WhileStatement
492 cond_ = cond;
497 Expression* cond() const { return cond_; }
518 Expression* cond_; member in class:v8::internal::ForStatement
    [all...]
  /hardware/ril/mock-ril/src/cpp/
worker.cpp 53 pthread_cond_init(&cond_, NULL);
75 pthread_cond_signal(&cond_);
147 pthread_cond_wait(&cond_, &mutex_);
174 pthread_cond_timedwait(&cond_, &mutex_, &ts);
272 pthread_cond_signal(&wqt_->cond_);
299 pthread_cond_signal(&wqt_->cond_);
worker.h 37 * pthread_cond_wait(&cond_, &mutex_);
57 pthread_cond_t cond_; member in class:WorkerThread

Completed in 2454 milliseconds