/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/libs/x86/include/bits/ |
gthr-default.h | 602 /* Backend condition mutex functions */ 604 /* Allocate a condition. */ 606 __gthread_objc_condition_allocate (objc_condition_t condition) 610 condition->backend = objc_malloc (sizeof (pthread_cond_t)); 612 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL)) 614 objc_free (condition->backend); 615 condition->backend = NULL; 623 /* Deallocate a condition. */ 625 __gthread_objc_condition_deallocate (objc_condition_t condition) 629 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition->backend) [all...] |
gthr-posix.h | 602 /* Backend condition mutex functions */ 604 /* Allocate a condition. */ 606 __gthread_objc_condition_allocate (objc_condition_t condition) 610 condition->backend = objc_malloc (sizeof (pthread_cond_t)); 612 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL)) 614 objc_free (condition->backend); 615 condition->backend = NULL; 623 /* Deallocate a condition. */ 625 __gthread_objc_condition_deallocate (objc_condition_t condition) 629 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition->backend) [all...] |
/art/test/021-string2/src/junit/framework/ |
Assert.java | 15 * Asserts that a condition is true. If it isn't it throws 18 static public void assertTrue(String message, boolean condition) { 19 if (!condition) 23 * Asserts that a condition is true. If it isn't it throws 26 static public void assertTrue(boolean condition) { 27 assertTrue(null, condition); 30 * Asserts that a condition is false. If it isn't it throws 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 37 * Asserts that a condition is false. If it isn't it throw [all...] |
/art/test/082-inline-execute/src/junit/framework/ |
Assert.java | 15 * Asserts that a condition is true. If it isn't it throws 18 static public void assertTrue(String message, boolean condition) { 19 if (!condition) 23 * Asserts that a condition is true. If it isn't it throws 26 static public void assertTrue(boolean condition) { 27 assertTrue(null, condition); 30 * Asserts that a condition is false. If it isn't it throws 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 37 * Asserts that a condition is false. If it isn't it throw [all...] |
/dalvik/tests/021-string2/src/junit/framework/ |
Assert.java | 15 * Asserts that a condition is true. If it isn't it throws 18 static public void assertTrue(String message, boolean condition) { 19 if (!condition) 23 * Asserts that a condition is true. If it isn't it throws 26 static public void assertTrue(boolean condition) { 27 assertTrue(null, condition); 30 * Asserts that a condition is false. If it isn't it throws 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 37 * Asserts that a condition is false. If it isn't it throw [all...] |
/dalvik/tests/082-inline-execute/src/junit/framework/ |
Assert.java | 15 * Asserts that a condition is true. If it isn't it throws 18 static public void assertTrue(String message, boolean condition) { 19 if (!condition) 23 * Asserts that a condition is true. If it isn't it throws 26 static public void assertTrue(boolean condition) { 27 assertTrue(null, condition); 30 * Asserts that a condition is false. If it isn't it throws 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 37 * Asserts that a condition is false. If it isn't it throw [all...] |
/dalvik/vm/mterp/armv5te/ |
unop.S | 15 $preinstr @ optional op; may set condition codes
|
/dalvik/vm/mterp/armv6t2/ |
unop.S | 14 $preinstr @ optional op; may set condition codes
|
unopNarrower.S | 18 $preinstr @ optional op; may set condition codes
|
unopWider.S | 14 $preinstr @ optional op; may set condition codes
|
/external/chromium/testing/gmock/include/gmock/internal/ |
gmock-internal-utils.h | 183 // implementation-defined when the above pre-condition is violated. 251 // implementation-defined when the above pre-condition is violated. 276 // Asserts that condition is true; aborts the process with the given 277 // message if condition is false. We cannot use LOG(FATAL) or CHECK() 281 inline void Assert(bool condition, const char* file, int line, 283 if (!condition) { 288 inline void Assert(bool condition, const char* file, int line) { 289 Assert(condition, file, line, "Assertion failed."); 292 // Verifies that condition is true; generates a non-fatal failure if 293 // condition is false [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
syncobj.c | 91 GLenum condition, GLbitfield flags) 94 (void) condition; 252 _mesa_FenceSync(GLenum condition, GLbitfield flags) 258 if (condition != GL_SYNC_GPU_COMMANDS_COMPLETE) { 259 _mesa_error(ctx, GL_INVALID_ENUM, "glFenceSync(condition=0x%x)", 260 condition); 266 condition); 281 syncObj->SyncCondition = condition; 285 ctx->Driver.FenceSync(ctx, syncObj, condition, flags);
|
/external/chromium_org/v8/include/ |
v8config.h | 360 # define V8_UNLIKELY(condition) (__builtin_expect(!!(condition), 0)) 361 # define V8_LIKELY(condition) (__builtin_expect(!!(condition), 1)) 363 # define V8_UNLIKELY(condition) (condition) 364 # define V8_LIKELY(condition) (condition)
|
/external/clang/test/SemaCXX/ |
warn-missing-noreturn.cpp | 32 bool condition(); 36 while (condition()) {}
|
/external/junit/src/junit/framework/ |
Assert.java | 15 * Asserts that a condition is true. If it isn't it throws 18 static public void assertTrue(String message, boolean condition) { 19 if (!condition) 23 * Asserts that a condition is true. If it isn't it throws 26 static public void assertTrue(boolean condition) { 27 assertTrue(null, condition); 30 * Asserts that a condition is false. If it isn't it throws 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 37 * Asserts that a condition is false. If it isn't it throw [all...] |
/external/llvm/test/MC/ARM/ |
thumb2-diagnostics.s | 13 @ CHECK-ERRORS: error: incorrect condition in IT block; got 'le', but expected 'eq' 16 @ CHECK-ERRORS: error: incorrect condition in IT block; got 'al', but expected 'ne' 25 @ CHECK-ERRORS: error: illegal IT block condition mask 'tfe' 53 @ CHECK-ERRORS: error: instruction 'bkpt' is not predicable, but condition code specified
|
/external/mesa3d/src/mesa/main/ |
syncobj.c | 91 GLenum condition, GLbitfield flags) 94 (void) condition; 252 _mesa_FenceSync(GLenum condition, GLbitfield flags) 258 if (condition != GL_SYNC_GPU_COMMANDS_COMPLETE) { 259 _mesa_error(ctx, GL_INVALID_ENUM, "glFenceSync(condition=0x%x)", 260 condition); 266 condition); 281 syncObj->SyncCondition = condition; 285 ctx->Driver.FenceSync(ctx, syncObj, condition, flags);
|
/external/protobuf/gtest/test/ |
gtest_environment_test.cc | 110 // Prints the message and aborts the program if condition is false. 111 void Check(bool condition, const char* msg) { 112 if (!condition) {
|
/external/smack/src/org/jivesoftware/smack/sasl/ |
SASLMechanism.java | 297 final private String condition;
field in class:SASLMechanism.Failure 299 public Failure(String condition) {
300 this.condition = condition;
304 * Get the SASL related error condition.
306 * @return the SASL related error condition.
309 return condition;
315 if (condition != null &&
316 condition.trim().length() > 0) {
317 stanza.append("<").append(condition).append("/>"); [all...] |
/development/ndk/platforms/android-3/include/linux/raid/ |
md_k.h | 180 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0) 182 #define wait_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq, condition, lock, cmd); } while (0)
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
lower_if_to_cond_assign.cpp | 124 /* If the LHS of the assignment is a condition variable that was 131 if (!assign->condition) { 139 assign->condition = cond_expr->clone(mem_ctx, NULL); 142 assign->condition = 146 assign->condition); 190 /* Store the condition to a variable. Move all of the instructions from 191 * the then-clause of the if-statement. Use the condition variable as a 192 * condition for all assignments. 203 assign = new(mem_ctx) ir_assignment(then_cond, ir->condition); 210 /* Add the new condition variable to the hash table. This allows us t [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/ |
util.py | 43 def WaitFor(condition, timeout): 44 """Waits for up to |timeout| secs for the function |condition| to return True. 49 Result of |condition| function (if present). 56 if condition.__name__ == '<lambda>': 58 return inspect.getsource(condition).strip() 61 return condition.__name__ 66 res = condition()
|
/external/mesa3d/src/glsl/ |
lower_if_to_cond_assign.cpp | 124 /* If the LHS of the assignment is a condition variable that was 131 if (!assign->condition) { 139 assign->condition = cond_expr->clone(mem_ctx, NULL); 142 assign->condition = 146 assign->condition); 190 /* Store the condition to a variable. Move all of the instructions from 191 * the then-clause of the if-statement. Use the condition variable as a 192 * condition for all assignments. 203 assign = new(mem_ctx) ir_assignment(then_cond, ir->condition); 210 /* Add the new condition variable to the hash table. This allows us t [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/ |
Exynos_OSAL_Event.c | 64 if (pthread_cond_init(&event->condition, NULL)) { 94 if (pthread_cond_destroy(&event->condition)) { 158 pthread_cond_signal(&event->condition); 199 pthread_cond_wait(&event->condition, (pthread_mutex_t *)(event->mutex)); 203 funcret = pthread_cond_timedwait(&event->condition, (pthread_mutex_t *)(event->mutex), &timeout);
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/raid/ |
md_k.h | 180 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0) 182 #define wait_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq, condition, lock, cmd); } while (0)
|