Searched defs:condition (Results 1 - 25 of 123) sorted by relevance

12345

/external/v8/test/mjsunit/
H A Ddebug-stepnext-do-while.js43 assertEquals(' } while(condition());',
63 function condition() { function
70 } while(condition());
/external/chromium/chrome/browser/debugger/manual_tests/resources/
H A Dloop-statements.js9 function condition() function
/external/webkit/Source/WebCore/inspector/
H A DScriptBreakpoint.h42 ScriptBreakpoint(int lineNumber, int columnNumber, const String& condition) argument
45 , condition(condition)
51 String condition; member in struct:WebCore::ScriptBreakpoint
/external/webkit/Source/WebCore/manual-tests/inspector/resources/
H A Dloop-statements.js9 function condition() function
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
H A DCondition.java19 package org.apache.tools.ant.taskdefs.condition;
24 * Interface for conditions to use inside the <condition> task.
29 * Is this condition true?
30 * @return true if the condition is true
H A DOs.java19 package org.apache.tools.ant.taskdefs.condition;
/external/emma/core/java12/com/vladium/util/asserts/
H A D$assert.java30 * @param condition
33 public static void ASSERT (final boolean condition, final String msg) argument
37 if (! condition) throw new RuntimeException (msg);
41 public static void ASSERT (final boolean condition) argument
45 if (! condition) throw new RuntimeException ("ASSERTION FAILURE");
/external/compiler-rt/lib/asan/lit_tests/
H A Dinitialization-nobug.cc26 bool condition = true; variable
28 return condition ? 0x2a : 052;
/external/guava/guava/src/com/google/common/math/
H A DMathPreconditions.java74 static void checkRoundingUnnecessary(boolean condition) { argument
75 if (!condition) {
80 static void checkInRange(boolean condition) { argument
81 if (!condition) {
86 static void checkNoOverflow(boolean condition) { argument
87 if (!condition) {
/external/skia/src/animator/
H A DSkDrawGroup.h55 SkString condition; member in class:SkGroup
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DFence.cpp39 void Fence::setFence(GLenum condition) argument
55 mCondition = condition;
/external/mesa3d/src/glsl/
H A Dlower_discard.cpp105 * Unconditional discards are treated as having a condition of "true".
150 ir_rvalue *condition = ir->condition; local
152 /* For unconditional discards, use "true" as the condition. */
153 if (condition == NULL)
154 condition = new(mem_ctx) ir_constant(true);
158 condition, NULL);
192 discard->condition = new(mem_ctx) ir_dereference_variable(temp);
H A Dlower_vec_index_to_cond_assign.cpp74 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
[all...]
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8ConsoleCustom.cpp80 bool condition = args[0]->BooleanValue(); local
82 imp->assertCondition(condition, scriptArguments.release(), callStack);
/external/dbus/bus/
H A Ddir-watch-kqueue.c53 _kqueue_watch_callback (DBusWatch *watch, unsigned int condition, void *data) argument
55 return dbus_watch_handle (watch, condition);
H A Ddir-watch-inotify.c53 _inotify_watch_callback (DBusWatch *watch, unsigned int condition, void *data) argument
55 return dbus_watch_handle (watch, condition);
H A Dtest.c41 unsigned int condition,
49 return dbus_watch_handle (watch, condition);
40 client_watch_callback(DBusWatch *watch, unsigned int condition, void *data) argument
/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/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/webkit/Source/WebCore/dom/
H A DNodeFilter.h68 static PassRefPtr<NodeFilter> create(PassRefPtr<NodeFilterCondition> condition) argument
70 return adoptRef(new NodeFilter(condition));
84 void setCondition(PassRefPtr<NodeFilterCondition> condition) { ASSERT(!m_condition); m_condition = condition; } argument
87 NodeFilter(PassRefPtr<NodeFilterCondition> condition) : m_condition(condition) { } argument
/external/chromium/testing/gtest/test/
H A Dgtest_environment_test.cc114 // Prints the message and aborts the program if condition is false.
115 void Check(bool condition, const char* msg) { argument
116 if (!condition) {
/external/dbus/test/
H A Dtest-utils.c13 unsigned int condition,
16 return dbus_watch_handle (watch, condition);
230 unsigned int condition,
238 return dbus_watch_handle (watch, condition);
12 connection_watch_callback(DBusWatch *watch, unsigned int condition, void *data) argument
229 server_watch_callback(DBusWatch *watch, unsigned int condition, void *data) argument
/external/expat/tests/
H A Dminicheck.c159 _fail_unless(int condition, const char *file, int line, char *msg) argument
/external/gtest/test/
H A Dgtest_environment_test.cc114 // Prints the message and aborts the program if condition is false.
115 void Check(bool condition, const char* msg) { argument
116 if (!condition) {
/external/junit/src/org/junit/
H A DAssert.java32 * Asserts that a condition is true. If it isn't it throws an
38 * @param condition
39 * condition to be checked
41 static public void assertTrue(String message, boolean condition) { argument
42 if (!condition)
47 * Asserts that a condition is true. If it isn't it throws an
50 * @param condition
51 * condition to be checked
53 static public void assertTrue(boolean condition) { argument
54 assertTrue(null, condition);
67 assertFalse(String message, boolean condition) argument
78 assertFalse(boolean condition) argument
[all...]

Completed in 607 milliseconds

12345