/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/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...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/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...] |
/prebuilts/tools/common/m2/repository/org/w3c/css/sac/1.3/ |
sac-1.3.jar | |
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedSynchronizer.java | 53 * can be used as a {@link Condition} implementation by subclasses 61 * condition, so if this constraint cannot be met, do not use it. The 67 * condition objects. These can be exported as desired into classes 199 * // Provides a Condition 200 * Condition newCondition() { return new ConditionObject(); } 216 * public Condition newCondition() { return sync.newCondition(); } 343 * inserted into a condition queue. Upon signal, the node is 362 /** waitStatus value to indicate thread is waiting on condition. */ 363 static final int CONDITION = -2; 382 * CONDITION: This node is currently on a condition queue [all...] |
/external/chromium-trace/catapult/tracing/tracing/ui/analysis/ |
memory_dump_vm_regions_details_pane.html | 73 condition: 'Start address', 81 condition: 'Virtual size', 86 condition: 'Protection flags', 91 condition: 'PSS', 96 condition: 'Private dirty', 101 condition: 'Private clean', 106 condition: 'Shared dirty', 111 condition: 'Shared clean', 116 condition: 'Swapped',
|
/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);
|
/art/compiler/optimizing/ |
dead_code_elimination.cc | 42 HInstruction* condition = if_instruction->InputAt(0); local 43 if (condition->IsIntConstant()) { 44 if (condition->AsIntConstant()->IsTrue()) { 48 DCHECK(condition->AsIntConstant()->IsFalse()) << condition->AsIntConstant()->GetValue();
|
/external/apache-http/src/org/apache/commons/codec/net/ |
BCodec.java | 105 * thrown if a failure condition is encountered during the encoding process. 126 * thrown if a failure condition is encountered during the encoding process. 145 * A decoder exception is thrown if a failure condition is encountered during the decode process. 166 * thrown if a failure condition is encountered during the encoding process. 190 * A decoder exception is thrown if a failure condition is encountered during the decode process.
|
/external/autotest/client/site_tests/cellular_Signal/ |
cellular_Signal.py | 36 self, label, condition, exception=None, timeout=10, sleep_interval=0.5): 37 """Poll until a condition becomes true and report timing stats 41 condition: function taking no args and returning bool 42 exception: exception to throw if condition doesn't become true 54 utils.poll_for_condition(condition,
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
TraversalChecker.cpp | 30 void checkBranchCondition(const Stmt *Condition, CheckerContext &C) const; 35 void TraversalDumper::checkBranchCondition(const Stmt *Condition, 38 // condition. We just print the collection expression. 39 const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(Condition); 42 Parent = Parents.getParent(Condition);
|
/external/google-breakpad/src/processor/ |
address_map_unittest.cc | 41 #define ASSERT_TRUE(condition) \ 42 if (!(condition)) { \ 43 fprintf(stderr, "FAIL: %s @ %s:%d\n", #condition, __FILE__, __LINE__); \ 47 #define ASSERT_FALSE(condition) ASSERT_TRUE(!(condition))
|
/external/libbrillo/brillo/message_loops/ |
glib_message_loop.cc | 63 GIOCondition condition = G_IO_NVAL; 66 condition = static_cast<GIOCondition>(G_IO_IN | G_IO_HUP | G_IO_NVAL); 69 condition = static_cast<GIOCondition>(G_IO_OUT | G_IO_HUP | G_IO_NVAL); 100 condition, 174 GIOCondition condition,
|
/external/llvm/include/llvm/CodeGen/ |
Analysis.h | 83 /// getFCmpCondCode - Return the ISD condition code corresponding to 84 /// the given LLVM IR floating-point condition code. This includes 89 /// getFCmpCodeWithoutNaN - Given an ISD condition code comparing floats, 93 /// getICmpCondCode - Return the ISD condition code corresponding to 94 /// the given LLVM IR integer condition code.
|
/external/v8/src/arm/ |
constants-arm.h | 68 // Values for the condition field as defined in section A3.2 69 enum Condition { 88 kSpecialCondition = 15 << 28, // Special condition (refer to section A3.2.1). 97 inline Condition NegateCondition(Condition cond) { 99 return static_cast<Condition>(cond ^ ne); 103 // Commute a condition such that {a cond b == b cond' a}. 104 inline Condition CommuteCondition(Condition cond) { 178 S = 1 << 20, // Set condition code (or leave unchanged) [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/ |
vc1parse.h | 52 /* This macro asserts if the condition is not true. */
54 #define VC1_ASSERT(condition) \
56 if (! (condition)) \
57 OS_INFO("Failed " #condition "!\n"); \
60 #define VC1_ASSERT(condition)
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
ChangeDefaultSmsAppHelper.java | 36 * When there's some condition that prevents an operation, such as sending a message, 38 * that condition. 41 * positively to the condition prompt and resolves the condition. It is 74 LogUtil.w(LogUtil.BUGLE_TAG, "Unsatisfied action condition: "
|
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/ |
ndbdic.c | 90 static NJ_INT16 search_node(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset); 91 static NJ_INT16 bdic_search_data(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset); 92 static NJ_INT16 bdic_search_fore_data(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset); 96 static NJ_INT16 search_node2(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset, 98 static NJ_INT16 bdic_search_fore_data2(NJ_SEARCH_CONDITION *condition, 550 static NJ_INT16 search_node(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset) 564 NJ_UINT16 ysize = (condition->ylen * sizeof(NJ_CHAR)); 582 byomi = (NJ_UINT8*)(condition->yomi); 605 if ((condition->operation == NJ_CUR_OP_FORE) && 606 NJ_CHAR_STRLEN_IS_0(condition->yomi)) [all...] |
/external/clang/test/OpenMP/ |
for_loop_messages.cpp | 113 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 119 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 126 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 132 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 138 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 231 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 238 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 245 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 252 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 259 // expected-note@+3 {{loop step is expected to be negative due to this condition}} [all...] |
for_simd_loop_messages.cpp | 108 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 114 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 121 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 127 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 133 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 226 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 233 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 240 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 247 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 254 // expected-note@+3 {{loop step is expected to be negative due to this condition}} [all...] |
parallel_for_loop_messages.cpp | 92 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 97 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 103 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 108 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 113 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 191 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 197 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 203 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 209 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 215 // expected-note@+3 {{loop step is expected to be negative due to this condition}} [all...] |
parallel_for_simd_loop_messages.cpp | 92 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 97 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 103 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 108 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 113 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 191 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 197 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 203 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 209 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 215 // expected-note@+3 {{loop step is expected to be negative due to this condition}} [all...] |
simd_loop_messages.cpp | 83 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 88 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 94 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 99 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 104 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 182 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 188 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 194 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 200 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 206 // expected-note@+3 {{loop step is expected to be negative due to this condition}} [all...] |
taskloop_loop_messages.cpp | 113 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 119 // expected-error@+3 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 126 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 132 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 138 // expected-error@+2 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}} 231 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 238 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 245 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 252 // expected-note@+3 {{loop step is expected to be positive due to this condition}} 259 // expected-note@+3 {{loop step is expected to be negative due to this condition}} [all...] |