Searched refs:condition (Results 101 - 125 of 596) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/base/
H A Dchecks.h43 // build fails to spot a violated condition, even those that would result in
45 // call DCHECK; if the condition really can't occur, but you'd sleep better
50 // variants of CHECK and DCHECK that print prettier messages if the condition
63 // the condition doesn't hold.
64 #define LAZY_STREAM(stream, condition) \
65 !(condition) ? static_cast<void>(0) : rtc::FatalMessageVoidify() & (stream)
72 // CHECK dies with a fatal error if condition is not true. It is *not*
78 #define CHECK(condition) \
79 LAZY_STREAM(rtc::FatalMessage(__FILE__, __LINE__).stream(), !(condition)) \
80 << "Check failed: " #condition << st
[all...]
H A Dsafe_conversions.h24 inline void Check(bool condition) { argument
25 if (!condition) {
50 // underflow. NaN assignment to an integral will trigger a CHECK condition.
/external/chromium_org/v8/include/
H A Dv8config.h339 # define V8_UNLIKELY(condition) (__builtin_expect(!!(condition), 0))
340 # define V8_LIKELY(condition) (__builtin_expect(!!(condition), 1))
342 # define V8_UNLIKELY(condition) (condition)
343 # define V8_LIKELY(condition) (condition)
/external/clang/test/Analysis/
H A Dunreachable-code-path.c143 void inlined(int condition) { argument
144 if (condition) {
/external/clang/test/SemaCXX/
H A Dwarn-missing-noreturn.cpp32 bool condition();
36 while (condition()) {}
/external/deqp/framework/common/
H A DtcuTestContext.hpp102 bool check (bool condition, const std::string& msg);
105 bool checkResult (bool condition, qpTestResult result, const std::string& msg);
/external/junit/src/junit/framework/
H A DAssert.java15 * Asserts that a condition is true. If it isn't it throws
18 static public void assertTrue(String message, boolean condition) { argument
19 if (!condition)
23 * Asserts that a condition is true. If it isn't it throws
26 static public void assertTrue(boolean condition) { argument
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) { argument
34 assertTrue(message, !condition);
37 * Asserts that a condition i
40 assertFalse(boolean condition) argument
[all...]
/external/lldb/scripts/Python/interface/
H A DSBBreakpointLocation.i58 /// The breakpoint location stops only if the condition expression evaluates
63 SetCondition (const char *condition);
67 /// Get the condition expression for the breakpoint location.
/external/mesa3d/src/mesa/main/
H A Dsyncobj.c91 GLenum condition, GLbitfield flags)
94 (void) condition;
252 _mesa_FenceSync(GLenum condition, GLbitfield flags) argument
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);
90 _mesa_fence_sync(struct gl_context *ctx, struct gl_sync_object *syncObj, GLenum condition, GLbitfield flags) argument
/external/protobuf/gtest/test/
H A Dgtest_environment_test.cc110 // Prints the message and aborts the program if condition is false.
111 void Check(bool condition, const char* msg) { argument
112 if (!condition) {
/external/smack/src/org/jivesoftware/smack/sasl/
H A DSASLMechanism.java297 final private String condition; field in class:SASLMechanism.Failure
299 public Failure(String condition) { argument
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)
[all...]
/external/valgrind/main/drd/tests/
H A Dpth_cond_destroy_busy.stderr.exp2 destruction of condition variable being waited upon: cond 0x........
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_if_to_cond_assign.cpp124 /* 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 variabl
[all...]
H A Dlower_vec_index_to_cond_assign.cpp103 /* Generate a single comparison condition "mask" for all of the components
170 if (ir->condition)
171 ir->condition = convert_vec_index_to_cond_assign(ir->condition);
203 /* Generate a single comparison condition "mask" for all of the components
229 /* If the original assignment has a condition, respect that original
230 * condition! This is acomplished by wrapping the new conditional
231 * assignments in an if-statement that uses the original condition.
233 if (ir->condition != NULL) {
234 /* No need to clone the condition becaus
[all...]
/external/mesa3d/src/glsl/
H A Dlower_if_to_cond_assign.cpp124 /* 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 variabl
[all...]
H A Dlower_vec_index_to_cond_assign.cpp103 /* Generate a single comparison condition "mask" for all of the components
170 if (ir->condition)
171 ir->condition = convert_vec_index_to_cond_assign(ir->condition);
203 /* Generate a single comparison condition "mask" for all of the components
229 /* If the original assignment has a condition, respect that original
230 * condition! This is acomplished by wrapping the new conditional
231 * assignments in an if-statement that uses the original condition.
233 if (ir->condition != NULL) {
234 /* No need to clone the condition becaus
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DBreakpointManager.js141 this._innerSetBreakpoint(uiSourceCode, breakpointItem.lineNumber, breakpointItem.columnNumber, breakpointItem.condition, breakpointItem.enabled);
203 * @param {string} condition
207 setBreakpoint: function(uiSourceCode, lineNumber, columnNumber, condition, enabled)
210 return this._innerSetBreakpoint(uiSourceCode, lineNumber, columnNumber, condition, enabled);
217 * @param {string} condition
221 _innerSetBreakpoint: function(uiSourceCode, lineNumber, columnNumber, condition, enabled)
225 breakpoint._updateState(condition, enabled);
231 breakpoint = new WebInspector.BreakpointManager.Breakpoint(this, projectId, path, sourceFileId, lineNumber, columnNumber, condition, enabled);
457 * @param {string} condition
460 WebInspector.BreakpointManager.Breakpoint = function(breakpointManager, projectId, path, sourceFileId, lineNumber, columnNumber, condition, enable
[all...]
/external/chromium_org/v8/src/compiler/
H A Dcontrol-builders.h52 void If(Node* condition);
82 void BreakUnless(Node* condition);
103 void BeginLabel(int index, Node* condition);
118 Environment* label_environment_; // Environment for next label condition.
/external/pcre/dist/
H A Dpcre_stringpiece_unittest.cc15 // CHECK dies with a fatal error if condition is not true. It is *not*
19 #define CHECK(condition) do { \
20 if (!(condition)) { \
22 __FILE__, __LINE__, #condition); \
/external/smack/src/org/jivesoftware/smackx/commands/
H A DAdHocCommand.java86 * Returns the specific condition of the <code>error</code> or <tt>null</tt> if the
89 * @param error the error the get the specific condition from.
90 * @return the specific condition of this error, or null if it doesn't have
96 for (SpecificErrorCondition condition : SpecificErrorCondition.values()) {
97 if (error.getExtension(condition.toString(),
99 return condition;
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_context.js12 function require(condition, message) {
13 if (!condition) {
/external/chromium_org/chrome/installer/util/
H A Dconditional_work_item_list.h17 explicit ConditionalWorkItemList(Condition* condition);
/external/chromium_org/sync/syncable/
H A Dsyncable_util.h36 bool SyncAssert(bool condition,
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcintltst.h128 * NOTE: Use 'int condition' rather than 'UBool condition' so the
132 U_CFUNC UBool assertTrue(const char* msg, int condition);
/external/icu/icu4c/source/test/cintltst/
H A Dcintltst.h128 * NOTE: Use 'int condition' rather than 'UBool condition' so the
132 U_CFUNC UBool assertTrue(const char* msg, int condition);

Completed in 1395 milliseconds

1234567891011>>