Searched refs:condition (Results 1 - 25 of 685) sorted by path

1234567891011>>

/external/ImageMagick/www/api/
H A Dmagick-image.php4345 <p>When the above condition (end of image list) is reached, the iterator is automaticall set so that you can start using MagickPreviousImage() to again iterate over the images in the reverse direction, starting with the last image (again). You can jump to this condition immeditally using MagickSetLastIterator().</p>
4726 <p>Also at that point any images added to the wand using MagickAddImages() or MagickReadImages() will be prepended before the first image. In this sense the condition is not quite exactly the same as MagickResetIterator().</p>
/external/aac/libAACenc/src/
H A Daacenc_pns.cpp349 INT condition = TRUE; local
351 condition = (tnsOrder > 3);
358 (tnsPredictionGain >= pnsConf->np.tnsGainThreshold) && condition &&
/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 &lt;condition&gt; 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/ant-glob/src/org/apache/tools/ant/util/
H A DFileUtils.java21 import org.apache.tools.ant.taskdefs.condition.Os;
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas813 /// Reset the condition of this stream so that it appears we have
4746 // initial condition (first time method is called)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DErrorManager.java811 public static void assertTrue(boolean condition, String message) { argument
812 if ( !condition ) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DGeneticAlgorithm.java101 * Evolve the given population. Evolution stops when the stopping condition
107 * @param condition the stopping condition used to stop evolution.
108 * @return the population that satisfies the stopping condition.
110 public Population evolve(Population initial, StoppingCondition condition) { argument
113 while (!condition.isSatisfied(current)) {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DForceEarlyReturnDebuggee.java59 public static boolean condition = true; field in class:ForceEarlyReturnDebuggee
88 while (condition)
96 while (condition)
104 while (condition)
112 while (condition)
120 while (condition)
128 while (condition)
136 while (condition)
144 while (condition)
152 while (condition)
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java848 * method chooses to flag this condition as an error.
870 * Assert that a condition is true. If it is not true, throw an error.
872 * @param condition false if an error should not be thrown, otherwise true.
875 * @throws RuntimeException if the condition is not true.
878 private void assertion(boolean condition, String msg) throws RuntimeException argument
880 if (!condition)
894 * method chooses to flag this condition as an error.
941 * method chooses to flag this condition as an error.
961 * method chooses to flag this condition as an error.
989 * method chooses to flag this condition a
[all...]
/external/autotest/cli/
H A Dcompose_query3 Selects all rows and columns that satisfy the condition specified
17 parser.add_option('-c', '--condition', action='store', dest='condition')
20 if options.condition:
22 options.condition, frontend.test_view_field_dict)
H A Dhost.py441 def _remove_labels(self, host, condition):
442 """Remove all labels from host that meet condition(label).
445 @param condition: callable that returns bool when given a label
451 if condition(l):
464 condition = lambda l: l['name'] not in labels and not l['platform']
465 self._remove_labels(host, condition)
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/common_lib/cros/
H A Darc.py295 condition = lambda: is_android_process_running(process_name)
296 utils.poll_for_condition(condition=condition,
574 condition=lambda: self.logcat_proc.poll() is not None, variable in class:ArcTest._stop_logcat.TimeoutException
H A Darc_common.py38 utils.poll_for_condition(condition=_is_android_booted,
H A Darc_util.py224 for condition in js_code_did_start_conditions:
225 extension_main_page.WaitForJavaScriptCondition(condition,
228 raise error.TestError('Error waiting for "%s": "%s".' % (condition, e))
H A Dinteractive_xmlrpc_server.py123 condition=lambda:
H A Dsession_manager.py53 condition=lambda: self.__received_signals(),
/external/autotest/client/common_lib/
H A Dsite_utils.py941 """Error raised when we time out when waiting on a condition."""
945 def poll_for_condition(condition,
950 """Polls until a condition becomes true.
952 @param condition: function taking no args and returning bool
953 @param exception: exception to throw if condition doesn't become true
965 value = condition()
974 desc = 'Timed out waiting for condition: ' + desc
976 desc = 'Timed out waiting for unnamed condition'
/external/autotest/client/cros/bluetooth/
H A Dbluetooth_device_xmlrpc_server.py182 condition=self._update_bluez,
194 condition=self._update_adapter,
205 condition=self._update_advertising,
245 condition=bluez_stopped,
H A Dbluetooth_semiauto_helper.py127 condition=complete, timeout=15, sleep_interval=1)
141 condition=complete, timeout=_DEVICE_TIMEOUT_TIME,
157 condition=complete, timeout=_DEVICE_TIMEOUT_TIME,
/external/autotest/client/cros/
H A Dcros_disks.py134 utils.poll_for_condition(condition=check_signal_content,
H A Dcros_ui.py63 condition=lambda: old_session != get_chrome_session_ident(host),
H A Dlogin.py14 a condition.
36 def wait_for_condition(condition, timeout_msg, timeout, process, crash_msg):
37 """Wait for callable |condition| to return true, while checking for crashes.
39 Poll for |condition| to become true, for |timeout| seconds. If the timeout
43 @param condition: a callable to poll on.
45 @param timeout: float number of seconds to poll on |condition|.
51 @raise: CrashError if process crashed and the condition never fired.
59 condition,
117 condition=lambda: cryptohome.is_vault_mounted(user),
134 condition
[all...]

Completed in 552 milliseconds

1234567891011>>