/external/webkit/Source/JavaScriptCore/assembler/ |
MacroAssemblerX86_64.h | 315 void setPtr(Condition cond, RegisterID left, TrustedImm32 right, RegisterID dest) 325 Jump branchPtr(Condition cond, RegisterID left, RegisterID right) 331 Jump branchPtr(Condition cond, RegisterID left, TrustedImmPtr right) 337 Jump branchPtr(Condition cond, RegisterID left, Address right) 343 Jump branchPtr(Condition cond, AbsoluteAddress left, RegisterID right) 349 Jump branchPtr(Condition cond, Address left, RegisterID right) 355 Jump branchPtr(Condition cond, Address left, TrustedImmPtr right) 361 Jump branchTestPtr(Condition cond, RegisterID reg, RegisterID mask) 367 Jump branchTestPtr(Condition cond, RegisterID reg, TrustedImm32 mask = TrustedImm32(-1)) 379 Jump branchTestPtr(Condition cond, AbsoluteAddress address, TrustedImm32 mask = TrustedImm32(-1) [all...] |
MacroAssemblerX86Common.h | 44 enum Condition { 628 return Jump(m_assembler.jCC(static_cast<X86Assembler::Condition>(cond & ~DoubleConditionBits))); 797 Jump branch8(Condition cond, Address left, TrustedImm32 right) 803 Jump branch32(Condition cond, RegisterID left, RegisterID right) 809 Jump branch32(Condition cond, RegisterID left, TrustedImm32 right) 818 Jump branch32(Condition cond, RegisterID left, Address right) 824 Jump branch32(Condition cond, Address left, RegisterID right) 830 Jump branch32(Condition cond, Address left, TrustedImm32 right) 836 Jump branch32(Condition cond, BaseIndex left, TrustedImm32 right) 842 Jump branch32WithUnalignedHalfWords(Condition cond, BaseIndex left, TrustedImm32 right [all...] |
/external/v8/test/mjsunit/ |
debug-changebreakpoint.js | 71 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false); 72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false); 73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false); 80 testArguments(dcp, '{' + bp_str + ',"condition":"1==2"}', true); 81 testArguments(dcp, '{' + bp_str + ',"condition":"false"}', true); 86 '{' + bp_str + ',"enabled":"true","condition":"false","ignoreCount":0}',
|
/external/valgrind/main/drd/tests/ |
pth_inconsistent_cond_wait.stderr.exp1 | 3 Inconsistent association of condition variable and mutex: condition variable 0x........, mutexes 0x........ and 0x........ 18 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 28 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
|
pth_inconsistent_cond_wait.stderr.exp2 | 3 Inconsistent association of condition variable and mutex: condition variable 0x........, mutexes 0x........ and 0x........ 18 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 28 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
|
/dalvik/dx/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...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
MsgMgr.java | 58 * the error condition is severe enough to halt processing. 85 * the error condition is severe enough to halt processing. 101 * the error condition is severe enough to halt processing. 119 * the error condition is severe enough to halt processing. 138 * the error condition is severe enough to halt processing. 162 * the error condition is severe enough to halt processing. 190 * the error condition is severe enough to halt processing. 207 * the error condition is severe enough to halt processing. 224 * the error condition is severe enough to halt processing. 242 * the error condition is severe enough to halt processing [all...] |
/external/chromium/chrome/browser/autofill/ |
autofill_type_unittest.cc | 41 // Boundary (error) condition. 47 // Beyond the boundary (error) condition. 53 // In-between value. Missing from enum but within range. Error 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/webkit/Source/WebCore/manual-tests/inspector/ |
debugger-step-on-for-statements.html | 6 for (initialize(); condition(); increment()) 24 outside of the 'initialize' function - debugger should enter the 'condition' function.<br> 27 Click 'Step into' until outside of the 'increment' function - debugger should enter the 'condition'
|
/frameworks/base/include/media/stagefright/foundation/ |
ADebug.h | 32 #define CHECK(condition) \ 34 !(condition), \ 37 " CHECK(" #condition ") failed.")
|
/libcore/junit/src/main/java/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...] |
/system/media/wilhelm/src/android/ |
MediaPlayer_to_android.h | 58 * pre-condition: mp != NULL 67 * pre-condition: gp != 0 74 * for all functions below: pre-condition: mp != NULL
|
VideoCodec_to_android.h | 51 * Pre-condition 60 * Pre-condition 73 * Pre-condition 76 * Post-condition
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
UndefBranchChecker.cpp | 11 // condition. 53 void checkBranchCondition(const Stmt *Condition, BranchNodeBuilder &Builder, 59 void UndefBranchChecker::checkBranchCondition(const Stmt *Condition, 63 SVal X = state->getSVal(Condition); 70 new BuiltinBug("Branch condition evaluates to a garbage value")); 73 // condition that is the most likely source of the "uninitialized 74 // branch condition." We do a recursive walk of the condition's 82 // being the terminator condition. We want to inspect the state
|
/external/clang/test/SemaObjC/ |
self-assign.m | 9 if (self = [self :x :y]) {} // expected-warning{{using the result of an assignment as a condition without parentheses}} \
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
Fence.h | 28 void setFence(GLenum condition);
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
config.h | 40 #define CHECK(condition) while (false && (condition)) std::cerr 41 #define DCHECK(condition) while (false && (condition)) std::cerr
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
package-info.java | 26 * <p>The {@link java.util.concurrent.locks.Condition} interface 27 * describes condition variables that may be associated with Locks. 30 * In particular, multiple {@code Condition} objects may be associated 32 * names of {@code Condition} methods are different from the
|
/prebuilt/windows/sdl/host/include/SDL/ |
SDL_mutex.h | 123 /* Condition variable functions */ 126 /* The SDL condition variable structure, defined in SDL_cond.c */ 130 /* Create a condition variable */ 133 /* Destroy a condition variable */ 136 /* Restart one of the threads that are waiting on the condition variable, 141 /* Restart all threads that are waiting on the condition variable, 146 /* Wait on the condition variable, unlocking the provided mutex. 152 /* Waits for at most 'ms' milliseconds, and returns 0 if the condition 153 variable is signaled, SDL_MUTEX_TIMEDOUT if the condition is not
|
/sdk/files/ |
alias_rules.xml | 17 <condition property="aapt" value="${android.tools.dir}/aapt.exe" else="${android.tools.dir}/aapt"> 19 </condition> 20 <condition property="adb" value="${android.tools.dir}/adb.exe" else="${android.tools.dir}/adb"> 22 </condition>
|
/frameworks/base/include/utils/ |
threads.h | 252 friend class Condition; 401 * Condition variable class. The implementation is system-dependent. 403 * Condition variables are paired up with mutexes. Lock the mutex, 406 * use the same mutex for a given Condition. 408 class Condition { 415 Condition(); 416 Condition(int type); 417 ~Condition(); 418 // Wait on the condition variable. Lock the mutex before calling. 422 // Signal the condition variable, allowing one thread to continue [all...] |
/external/mesa3d/src/glsl/ |
lower_vec_index_to_cond_assign.cpp | 74 ir_expression *condition; local 106 condition = new(base_ir) ir_expression(ir_binop_equal, 118 assign = new(base_ir) ir_assignment(deref, swizzle, condition); 159 if (ir->condition) 160 ir->condition = convert_vec_index_to_cond_assign(ir->condition); 192 ir_rvalue *condition, *swizzle; local 195 condition = new(ir) ir_expression(ir_binop_equal, 207 assign = new(ir) ir_assignment(swizzle, deref, condition); 245 ir->condition = convert_vec_index_to_cond_assign(ir->condition) [all...] |