Searched refs:condition (Results 176 - 200 of 685) sorted by relevance

1234567891011>>

/external/autotest/client/site_tests/desktopui_AudioFeedback/
H A Ddesktopui_AudioFeedback.py33 condition=player_is_ready,
46 condition=lambda: get_current_time() > old_time,
/external/autotest/client/site_tests/desktopui_MediaAudioFeedback/
H A Ddesktopui_MediaAudioFeedback.py81 condition=lambda: tab.EvaluateJavaScript('player.ended'),
98 condition=lambda: get_current_time() > old_time,
/external/chromium-trace/catapult/devil/devil/utils/
H A Dreset_usb.py65 def _reset_all_matching(condition):
68 if int(device_info.get('device')) != 1 and condition(device_info):
/external/chromium-trace/catapult/telemetry/telemetry/core/
H A Dutil.py64 def WaitFor(condition, timeout):
65 return catapult_util.WaitFor(condition, timeout)
/external/junit/src/main/java/org/junit/
H A DAssert.java32 * Asserts that a condition is true. If it isn't it throws an
37 * @param condition condition to be checked
39 static public void assertTrue(String message, boolean condition) { argument
40 if (!condition) {
46 * Asserts that a condition is true. If it isn't it throws an
49 * @param condition condition to be checked
51 static public void assertTrue(boolean condition) { argument
52 assertTrue(null, condition);
63 assertFalse(String message, boolean condition) argument
73 assertFalse(boolean condition) argument
[all...]
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dreset_usb.py56 def _reset_all_matching(condition):
59 if int(device_info.get('device')) != 1 and condition(device_info):
/external/mesa3d/docs/
H A DMESA_shader_debug.spec197 void assertMESA(const bool condition)
198 void assertMESA(const bool condition, const int cookie)
199 void assertMESA(const bool condition, const int cookie,
202 The assertMESA function checks if the argument <condition> is
/external/mesa3d/src/glsl/
H A Dlower_variable_index_to_cond_assign.cpp106 ir_variable *const condition = local
110 instructions->push_tail(condition);
113 new(mem_ctx) ir_dereference_variable(condition);
197 void generate(unsigned i, ir_rvalue* condition, exec_list *list) const argument
218 ? new(mem_ctx) ir_assignment(element, variable, condition, write_mask)
219 : new(mem_ctx) ir_assignment(variable, element, condition);
453 /* If the original assignment has a condition, respect that original
454 * condition! This is acomplished by wrapping the new conditional
455 * assignments in an if-statement that uses the original condition.
457 if ((orig_assign != NULL) && (orig_assign->condition !
[all...]
H A Dlower_vec_index_to_swizzle.cpp162 ir->condition = convert_vec_index_to_swizzle(ir->condition);
H A Dopt_if_simplification.cpp81 /* FINISHME: Ideally there would be a way to note that the condition results
86 ir_constant *condition_constant = ir->condition->constant_expression_value();
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_syncobj.c67 GLenum condition, GLbitfield flags)
72 assert(condition == GL_SYNC_GPU_COMMANDS_COMPLETE && flags == 0);
66 st_fence_sync(struct gl_context *ctx, struct gl_sync_object *obj, GLenum condition, GLbitfield flags) argument
/external/regex-re2/util/
H A Dlogging.h14 #define DCHECK(condition) assert(condition)
/external/syslinux/gpxe/src/drivers/bus/
H A Dvirtio-ring.c27 #define BUG_ON(condition) do { if (condition) BUG(); } while (0)
/external/valgrind/drd/tests/
H A Dpth_cond_race.stderr.exp3 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DNetworkMonitor.java112 private static void assertIsTrue(boolean condition) { argument
113 if (!condition) {
/external/v8/src/debug/
H A Ddebug.js174 BreakPoint.prototype.condition = function() {
175 if (this.script_break_point() && this.script_break_point().condition()) {
176 return this.script_break_point().condition();
197 BreakPoint.prototype.setCondition = function(condition) {
198 this.condition_ = condition;
207 if (this.condition()) {
208 // If break point has condition try to evaluate it in the top frame.
210 var mirror = exec_state.frame(0).evaluate(this.condition());
216 // Exception evaluating condition counts as not triggered.
333 ScriptBreakPoint.prototype.condition
[all...]
/external/autotest/cli/
H A Dquery_results3 Selects all rows and columns that satisfy the condition specified
19 parser.add_option('-w', '--where', action='store', dest='condition',
20 help=("The WHERE condition for the query witten in the 'new style' "
21 "condition syntax for new tko (see "
64 if not options.condition:
65 parser.error('You must specify a condition.')
67 where = options.condition.replace('%', '%%')
/external/autotest/client/site_tests/power_FlashVideoSuspend/
H A Dpower_FlashVideoSuspend.py41 condition=lambda: get_current_time() > old_time,
/external/autotest/client/site_tests/power_VideoSuspend/
H A Dpower_VideoSuspend.py39 condition=lambda: _get_current_time() > old_time,
/external/autotest/frontend/client/src/autotest/tko/
H A DTestLabelManager.java214 public void handleInvalidate(JSONObject condition) { argument
215 currentTestCondition = condition;
219 public void handleRevalidate(JSONObject condition) { argument
220 currentTestCondition = condition;
/external/expat/tests/
H A Dminicheck.h80 void _fail_unless(int condition, const char *file, int line, const char *msg);
/external/libbrillo/brillo/message_loops/
H A Dglib_message_loop.h48 // ready to perform the operation given in |condition| without blocking.
50 GIOCondition condition,
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_vector_splitting.cpp175 !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/
H A Dsyncobj.h69 _mesa_FenceSync(GLenum condition, GLbitfield flags);
/external/strace/mpers-m32/
H A Dstruct_ff_effect.h60 } ATTRIBUTE_PACKED condition[2]; member in union:__anon17657::__anon17660

Completed in 1092 milliseconds

1234567891011>>