HomeSort by relevance Sort by last modified time
    Searched full:condition (Results 701 - 725 of 7248) sorted by null

<<21222324252627282930>>

  /system/bt/conf/
bt_stack.conf 17 # BT_TRACE_LEVEL_ERROR 1 ( Error condition trace messages )
18 # BT_TRACE_LEVEL_WARNING 2 ( Warning condition trace messages )
  /bootable/recovery/minzip/
Log.h 56 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
63 ( (CONDITION(cond)) \
81 ( (CONDITION(cond)) \
95 ( (CONDITION(cond)) \
109 ( (CONDITION(cond)) \
123 ( (CONDITION(cond)) \
  /cts/tools/vm-tests-tf/src/dot/junit/
DxAbstractMain.java 135 static public void assertTrue(boolean condition) {
136 if (!condition) throw new RuntimeException("AssertionFailedError: condition was false");
139 static public void assertFalse(boolean condition) {
140 if (condition) throw new RuntimeException("AssertionFailedError: condition was true");
DxTestCase.java 130 static public void assertTrue(boolean condition) {
131 if (!condition) throw new RuntimeException("AssertionFailedError: condition was false");
134 static public void assertFalse(boolean condition) {
135 if (condition) throw new RuntimeException("AssertionFailedError: condition was true");
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
GeneticAlgorithm.java 101 * 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) {
113 while (!condition.isSatisfied(current)) {
  /frameworks/av/include/media/stagefright/foundation/
Mutexed.h 21 #include <utils/Condition.h>
37 * Condition mCondition1;
66 * // you can use the integral mutex to wait for a condition
122 // Wait on the condition variable using lock. Must be locked.
123 inline status_t waitForCondition(Condition &cond) { return cond.wait(mLock); }
126 inline status_t waitForConditionRelative(Condition &cond, nsecs_t reltime) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
meta.h 134 template <bool Condition, typename T = void> struct EnableIfCond { typedef T Type; };
137 template <bool Condition, typename T = void> struct DisableIfCond { typedef T Type; };
140 template <typename Condition, typename T = void>
141 struct EnableIf : EnableIfCond<Condition::Value, T> {};
143 template <typename Condition, typename T = void>
144 struct DisableIf : DisableIfCond<Condition::Value, T> {};
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 229 boolean condition =
235 checkMatch(condition,
249 boolean condition =
257 checkMatch(condition,
271 boolean condition =
280 checkMatch(condition,
295 boolean condition =
302 checkMatch(condition,
316 boolean condition =
330 checkMatch(condition,
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
log.h 175 #ifndef CONDITION
176 #define CONDITION(cond) ((cond) != 0)
185 ((CONDITION(cond)) \
205 ((CONDITION(cond)) \
228 ((CONDITION(cond)) \
246 ((CONDITION(cond)) \
271 ((CONDITION(cond)) \
276 ((CONDITION(cond)) \
285 * Log a fatal error. If the given condition fails, this stops program
287 * It is NOT stripped from release builds. Note that the condition tes
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 133 /// | | 1 = "If" block, calculates the condition
134 /// 4 | 2 = "Then" subregion, runs if the condition is true
136 /// |/ 4 = "Else" optional subregion, runs if the condition is false
142 /// The condition for the optional "Else" region is expressed as a PHI node.
160 /// while the true side continues the general flow. So the loop condition
194 Value *invert(Value *Condition);
367 /// \brief Invert the given condition
368 Value *StructurizeCFG::invert(Value *Condition) {
370 if (Condition == BoolTrue)
373 if (Condition == BoolFalse
    [all...]
  /prebuilts/devtools/tools/lib/
hamcrest-core-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 
  /external/libevent/include/event2/
thread.h 134 * condition variables. It's used to tell evthread_set_condition_callbacks
141 /** Function to allocate and initialize a new condition variable.
142 * Returns the condition variable on success, and NULL on failure.
146 /** Function to free a condition variable. */
148 /** Function to signal a condition variable. If 'broadcast' is 1, all
152 * lock for the condition.
155 /** Function to wait for a condition variable. The lock 'lock'
157 * while waiting for the condition to be come signalled, and
163 * The function should return -1 on error; 0 if the condition
169 /** Sets a group of functions that Libevent should use for condition variables
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.h 203 void DeoptimizeIf(Condition cc, LInstruction* instr,
206 void DeoptimizeIf(Condition cc, LInstruction* instr,
252 static Condition TokenToCondition(Token::Value op, bool is_unsigned);
257 void EmitBranch(InstrType instr, Condition cc);
259 void EmitTrueBranch(InstrType instr, Condition cc);
261 void EmitFalseBranch(InstrType instr, Condition cc);
266 // Returns the condition on which a final split to
268 Condition EmitTypeofIs(LTypeofIsAndBranch* instr, Register input);
271 // Returns the condition on which a final split to
273 Condition EmitIsString(Register input
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.h 202 void DeoptimizeIf(Condition cc, LInstruction* instr,
205 void DeoptimizeIf(Condition cc, LInstruction* instr,
248 static Condition TokenToCondition(Token::Value op, bool is_unsigned);
253 void EmitBranch(InstrType instr, Condition cc);
255 void EmitTrueBranch(InstrType instr, Condition cc);
257 void EmitFalseBranch(InstrType instr, Condition cc);
262 // Returns the condition on which a final split to
264 Condition EmitTypeofIs(LTypeofIsAndBranch* instr, Register input);
267 // Returns the condition on which a final split to
269 Condition EmitIsString(Register input
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 73 static NJ_UINT16 search_data(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset);
77 static NJ_UINT16 search_data(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset)
103 tmp_hinsi = condition->hinsi.fore;
104 condition->hinsi.fore = condition->hinsi.yominasi_fore;
109 if (njd_connect_test(condition, DATA_FHINSI(data), DATA_BHINSI(data))) {
113 if (condition->operation == NJ_CUR_OP_LINK) {
120 if (yomi_strcmp_forward(loctset->loct.handle, data, condition->yomi)) {
136 condition->hinsi.fore = tmp_hinsi;
147 condition->hinsi.fore = tmp_hinsi
    [all...]
  /frameworks/base/docs/html/reference/android/support/test/uiautomator/
Until.html 347 <p>Returns a condition that depends on a <code><a href="/reference/android/support/test/uiautomator/UiObject2.html">UiObject2</a></code>'s checkable state.
374 <p>Returns a condition that depends on a <code><a href="/reference/android/support/test/uiautomator/UiObject2.html">UiObject2</a></code>'s checked state.
401 <p>Returns a condition that depends on a <code><a href="/reference/android/support/test/uiautomator/UiObject2.html">UiObject2</a></code>'s clickable state.
428 <p>Returns a condition that is satisfied when the object's content description contains the
456 <p>Returns a condition that is satisfied when the object's content description ends with the
484 <p>Returns a condition that is satisfied when the object's content description exactly matches
512 <p>Returns a condition that is satisfied when the object's content description matches the given
540 <p>Returns a condition that is satisfied when the object's content description matches the given
568 <p>Returns a condition that is satisfied when the object's content description starts with the
596 <p>Returns a condition that depends on a <code><a href="/reference/android/support/test/uiautomator/UiObject2.html">UiObj (…)
    [all...]
  /external/junit/src/org/junit/
Assert.java 32 * 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) {
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) {
54 assertTrue(null, condition);
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
ant-glob-1.0.jar 
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 158 /// Just a boolean condition. Used by Mutex::LockWhen and similar.
159 class Condition {
164 Condition(bool (*func)(T*), T* arg)
167 Condition(bool (*func)())
214 void LockWhen(Condition cond) { Lock(); WaitLoop(cond); }
215 void ReaderLockWhen(Condition cond) { Lock(); WaitLoop(cond); }
216 void Await(Condition cond) { WaitLoop(cond); }
218 bool ReaderLockWhenWithTimeout(Condition cond, int millis)
220 bool LockWhenWithTimeout(Condition cond, int millis)
222 bool AwaitWithTimeout(Condition cond, int millis
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
CommonPanel.java 157 String condition = savedSqlCondition; local
161 condition = "(" + condition + ") AND test_label_invalidated.id IS NULL";
165 addIfNonempty(conditionArgs, "extra_where", condition);
189 setSqlCondition(arguments.get("condition"));
196 arguments.put("condition", savedSqlCondition);
202 Utils.setDefaultValue(arguments, "condition", "");
  /external/dbus/dbus/
dbus-socket-set-poll.c 249 unsigned int condition = 0; local
252 condition |= DBUS_WATCH_READABLE;
254 condition |= DBUS_WATCH_WRITABLE;
256 condition |= DBUS_WATCH_HANGUP;
258 condition |= DBUS_WATCH_ERROR;
261 condition |= _DBUS_WATCH_NVAL;
263 return condition;
  /external/google-breakpad/src/testing/gtest/codegear/
gtest.cbproj 5 <Config Condition="'$(Config)'==''">Release</Config>
7 <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
10 <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
15 <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
20 <PropertyGroup Condition="'$(Base)'!=''">
36 <PropertyGroup Condition="'$(Cfg_1)'!=''">
55 <PropertyGroup Condition="'$(Cfg_2)'!=''">
gtest_unittest.cbproj 5 <Config Condition="'$(Config)'==''">Release</Config>
7 <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
10 <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
15 <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
20 <PropertyGroup Condition="'$(Base)'!=''">
37 <PropertyGroup Condition="'$(Cfg_1)'!=''">
56 <PropertyGroup Condition="'$(Cfg_2)'!=''">
  /external/protobuf/gtest/codegear/
gtest.cbproj 5 <Config Condition="'$(Config)'==''">Release</Config>
7 <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
10 <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
15 <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
20 <PropertyGroup Condition="'$(Base)'!=''">
36 <PropertyGroup Condition="'$(Cfg_1)'!=''">
55 <PropertyGroup Condition="'$(Cfg_2)'!=''">

Completed in 676 milliseconds

<<21222324252627282930>>