/external/chromium_org/third_party/icu/source/test/intltest/ |
intltest.h | 190 UBool assertTrue(const char* message, UBool condition, UBool quiet=FALSE, UBool possibleDataError=FALSE); 191 UBool assertFalse(const char* message, UBool condition, UBool quiet=FALSE); 203 UBool assertTrue(const UnicodeString& message, UBool condition, UBool quiet=FALSE); 204 UBool assertFalse(const UnicodeString& message, UBool condition, UBool quiet=FALSE);
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
opt_if_simplification.cpp | 81 /* FINISHME: Ideally there would be a way to note that the condition results 86 ir_constant *condition_constant = ir->condition->constant_expression_value();
|
ir.h | 717 ir_if(ir_rvalue *condition) 718 : condition(condition) 737 ir_rvalue *condition; member in class:ir_if 809 ir_assignment(ir_rvalue *lhs, ir_rvalue *rhs, ir_rvalue *condition = NULL); 818 ir_assignment(ir_dereference *lhs, ir_rvalue *rhs, ir_rvalue *condition, 870 * Optional condition for the assignment. 872 ir_rvalue *condition; member in class:ir_assignment 1323 ir_rvalue *condition; member in class:ir_discard [all...] |
ir_hv_accept.cpp | 315 if (this->condition) 316 s = this->condition->accept(v); 377 if (this->condition != NULL) { 378 s = this->condition->accept(v); 394 s = this->condition->accept(v);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_vector_splitting.cpp | 175 !ir->condition) { 183 !ir->condition) { 265 if (lhs_deref && rhs_deref && (lhs || rhs) && !ir->condition) { 331 handle_rvalue(&ir->condition);
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
syncobj.h | 69 _mesa_FenceSync(GLenum condition, GLbitfield flags);
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDrawGroup.h | 55 SkString condition; member in class:SkGroup
|
/external/chromium_org/third_party/skia/src/utils/ |
SkTLogic.h | 39 /** SkTIf_c::type = (condition) ? T : F; 42 template <bool condition, typename T, typename F> struct SkTIf_c { 49 /** SkTIf::type = (Condition::value) ? T : F; */ 50 template <typename Condition, typename T, typename F> struct SkTIf { 51 typedef typename SkTIf_c<static_cast<bool>(Condition::value), T, F>::type type;
|
/external/expat/tests/ |
minicheck.h | 75 void _fail_unless(int condition, const char *file, int line, char *msg);
|
/external/icu4c/test/intltest/ |
intltest.h | 237 UBool assertTrue(const char* message, UBool condition, UBool quiet=FALSE, UBool possibleDataError=FALSE, const char *file=NULL, int line=0); 238 UBool assertFalse(const char* message, UBool condition, UBool quiet=FALSE); 251 UBool assertTrue(const UnicodeString& message, UBool condition, UBool quiet=FALSE); 252 UBool assertFalse(const UnicodeString& message, UBool condition, UBool quiet=FALSE);
|
/external/mesa3d/src/glsl/ |
opt_if_simplification.cpp | 81 /* FINISHME: Ideally there would be a way to note that the condition results 86 ir_constant *condition_constant = ir->condition->constant_expression_value();
|
ir.h | 717 ir_if(ir_rvalue *condition) 718 : condition(condition) 737 ir_rvalue *condition; member in class:ir_if 809 ir_assignment(ir_rvalue *lhs, ir_rvalue *rhs, ir_rvalue *condition = NULL); 818 ir_assignment(ir_dereference *lhs, ir_rvalue *rhs, ir_rvalue *condition, 870 * Optional condition for the assignment. 872 ir_rvalue *condition; member in class:ir_assignment 1323 ir_rvalue *condition; member in class:ir_discard [all...] |
ir_hv_accept.cpp | 315 if (this->condition) 316 s = this->condition->accept(v); 377 if (this->condition != NULL) { 378 s = this->condition->accept(v); 394 s = this->condition->accept(v);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_vector_splitting.cpp | 175 !ir->condition) { 183 !ir->condition) { 265 if (lhs_deref && rhs_deref && (lhs || rhs) && !ir->condition) { 331 handle_rvalue(&ir->condition);
|
/external/mesa3d/src/mesa/main/ |
syncobj.h | 69 _mesa_FenceSync(GLenum condition, GLbitfield flags);
|
/external/skia/src/animator/ |
SkDrawGroup.h | 55 SkString condition; member in class:SkGroup
|
/external/skia/src/utils/ |
SkTLogic.h | 39 /** SkTIf_c::type = (condition) ? T : F; 42 template <bool condition, typename T, typename F> struct SkTIf_c { 49 /** SkTIf::type = (Condition::value) ? T : F; */ 50 template <typename Condition, typename T, typename F> struct SkTIf { 51 typedef typename SkTIf_c<static_cast<bool>(Condition::value), T, F>::type type;
|
/external/valgrind/main/memcheck/tests/x86/ |
pushfpopf_s.S | 31 # now use the condition codes to generate a value
|
/hardware/invensense/60xx/libsensors_iio/software/core/driver/include/ |
log.h | 140 #ifndef CONDITION 141 #define CONDITION(cond) ((cond) != 0) 150 ((CONDITION(cond)) \ 165 ((CONDITION(cond)) \ 183 ((CONDITION(cond)) \ 201 ((CONDITION(cond)) \ 219 ((CONDITION(cond)) \ 227 * Log a fatal error. If the given condition fails, this stops program 229 * It is NOT stripped from release builds. Note that the condition test 233 ((CONDITION(cond)) [all...] |
/hardware/invensense/65xx/libsensors_iio/software/core/driver/include/ |
log.h | 144 #ifndef CONDITION 145 #define CONDITION(cond) ((cond) != 0) 154 ((CONDITION(cond)) \ 169 ((CONDITION(cond)) \ 187 ((CONDITION(cond)) \ 205 ((CONDITION(cond)) \ 223 ((CONDITION(cond)) \ 231 * Log a fatal error. If the given condition fails, this stops program 233 * It is NOT stripped from release builds. Note that the condition test 237 ((CONDITION(cond)) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
CodeGeneratorInstrumentation.py | 57 if (${condition}) 72 if (${condition}) 285 condition = "%s.isValid()" % self.params_impl[0].name 288 condition = "" 291 condition = "InstrumentingAgents* agents = instrumentingAgentsFor%s(%s)" % ( 307 condition=condition))
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
JavaScriptSourceFrame.js | 143 // FIXME: Change condition above to explicitly check that current uiSourceCode is created by default debugger mapping 193 this._addBreakpointDecoration(lineNumber, breakpointDecoration.condition, breakpointDecoration.enabled, true); 225 this._setBreakpoint(lineNumber, breakpointDecoration.condition, breakpointDecoration.enabled); 334 * @param {string} condition 338 _addBreakpointDecoration: function(lineNumber, condition, enabled, mutedWhileEditing) 341 condition: condition, 348 this.textEditor.addBreakpoint(lineNumber, disabled, !!condition); 392 this._conditionEditorElement.value = breakpoint ? breakpoint.condition() : ""; 399 conditionElement.className = "source-frame-breakpoint-condition"; 340 condition: condition, property [all...] |
/external/chromium_org/ui/webui/resources/js/ |
load_time_data.js | 116 * Checks condition, displays error message if expectation fails. 117 * @param {*} condition The condition to check for truthiness. 120 function expect(condition, message) { 121 if (!condition)
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_flow.c | 81 * Begin a "skip" block. Inside this block we can test a condition and 82 * skip to the end of the block if the condition is false. 95 * Insert code to test a condition and branch to the end of the current 96 * skip block if the condition is true. 279 * contrasts lp_build_loop as this checks condition on entry 379 LLVMValueRef condition) 385 ifthen->condition = condition; 443 LLVMBuildCondBr(builder, ifthen->condition, 448 LLVMBuildCondBr(builder, ifthen->condition, [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_flow.c | 81 * Begin a "skip" block. Inside this block we can test a condition and 82 * skip to the end of the block if the condition is false. 95 * Insert code to test a condition and branch to the end of the current 96 * skip block if the condition is true. 279 * contrasts lp_build_loop as this checks condition on entry 379 LLVMValueRef condition) 385 ifthen->condition = condition; 443 LLVMBuildCondBr(builder, ifthen->condition, 448 LLVMBuildCondBr(builder, ifthen->condition, [all...] |