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

<<31323334353637383940>>

  /frameworks/base/tools/aapt/
WorkQueue.h 64 * 'backlog' times the number of threads. This condition reduces the rate of entry into
107 Condition mWorkChangedCondition;
108 Condition mWorkDequeuedCondition;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_parse_sc_fast_loop.c 61 /* RARE Valid Condition, SC == 00 00 01 00 */
88 /* RARE Valid Condition, SC == 00 00 01 01 */
96 /* Valid Condition, SC == 00 00 01 xx */
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
cpu_speed_test.cc 55 // extend into the border and test the border condition.
74 // extend into the border and test the border condition.
90 // lots of small partitions which might will test the other condition.
  /hardware/intel/common/utils/ISV/include/
isv_processor.h 115 Condition mRunCond;
117 // condition for seek finish
119 Condition mEndCond;
  /ndk/tests/device/fenv/jni/
test_fenv.c 23 #define ASSERT_TRUE(condition) \
24 (condition)? (void)0 : fail(__FILE__, __LINE__, __func__, #condition)
  /packages/apps/Camera2/src/com/android/camera/captureintent/stateful/
StateMachineImpl.java 23 import java.util.concurrent.locks.Condition;
37 /** The condition to synchronize state changed event. */
38 private final Condition mStateChangedCondition;
  /packages/apps/Nfc/nci/jni/
CondVar.cpp 18 * Encapsulate a condition variable for thread synchronization.
75 ** Description: Block the caller and wait for a condition.
94 ** Description: Block the caller and wait for a condition.
  /packages/services/Car/tests/libvehiclenetwork-native-test/
IVehicleNetworkTestListener.h 120 Condition mCondition;
124 Condition mHalRestartCondition;
128 Condition mHalErrorCondition;
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_test_assert.h 58 * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0).
66 * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0).
74 * \brief Explicitely pass without checking an assertion condition. Updates assertion counter.
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_test_assert.h 58 * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0).
66 * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0).
74 * \brief Explicitely pass without checking an assertion condition. Updates assertion counter.
  /prebuilts/misc/windows/sdl2/include/
SDL_test_assert.h 58 * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0).
66 * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0).
74 * \brief Explicitely pass without checking an assertion condition. Updates assertion counter.
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_test_assert.h 58 * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0).
66 * \param assertCondition Evaluated condition or variable to assert; fail (==0) or pass (!=0).
74 * \brief Explicitely pass without checking an assertion condition. Updates assertion counter.
  /sdk/files/ant/
build.xml 157 <condition property="exe" value=".exe" else=""><os family="windows" /></condition>
158 <condition property="bat" value=".bat" else=""><os family="windows" /></condition>
174 <condition property="verbosity" value="verbose" else="quiet">
176 </condition>
179 <condition property="has.keystore">
185 </condition>
186 <condition property="has.password">
192 </condition>
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_lifecycle.py 41 '<Condition><Age>365</Age></Condition>'
45 '{"rule": [{"action": {"type": "Add"}, "condition": {"age": 365}}]}\n')
48 '{"rule": [{"action": {"type": "Delete"}, "condition": {"age": 365}}]}\n')
52 '{"lifecycle": {"rule": [{"action": {"type": "Delete"}, "condition": '
56 '{"rule": [{"action": {"type": "Delete"}, "condition": '
  /external/clang/lib/StaticAnalyzer/Checkers/
TestAfterDivZeroChecker.cpp 87 void checkBranchCondition(const Stmt *Condition, CheckerContext &C) const;
215 void TestAfterDivZeroChecker::checkBranchCondition(const Stmt *Condition,
217 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(Condition)) {
233 } else if (const UnaryOperator *U = dyn_cast<UnaryOperator>(Condition)) {
249 dyn_cast<ImplicitCastExpr>(Condition)) {
255 SVal Val = C.getSVal(Condition);
  /external/deqp/framework/delibs/decpp/
deDefs.hpp 85 * \brief Throw runtime error if condition is not met.
86 * \param X Condition to check.
88 * This macro throws std::runtime_error if condition X is not met.
93 * \brief Throw runtime error if condition is not met.
94 * \param X Condition to check.
97 * This macro throws std::runtime_error with message MSG if condition X is
  /external/guice/
common.xml 47 <condition property="Eclipse-ExtensibleAPI" value="true">
49 </condition>
51 <condition property="Import-Package" value="!com.google.inject.*,*" else="!${module}.*,${imports},*">
53 </condition>
55 <condition property="Fragment-Host" value="com.google.inject">
57 </condition>
  /external/skia/src/animator/
SkDrawGroup.cpp 23 SK_MEMBER(condition, String),
106 bool conditionTrue = ifCondition(maker, this, condition);
127 if (condition.size() > 0)
128 SkDebugf("condition=\"%s\" ", condition.c_str());
209 SkDebugf("condition=%s ", conditionString.c_str());
  /external/valgrind/drd/tests/
tc23_bogus_condwait.stderr.exp-linux-ppc 7 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
31 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
51 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
185 def Condition(lock=None):
187 Returns a condition object
189 from multiprocessing.synchronize import Condition
190 return Condition(lock)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
185 def Condition(lock=None):
187 Returns a condition object
189 from multiprocessing.synchronize import Condition
190 return Condition(lock)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
185 def Condition(lock=None):
187 Returns a condition object
189 from multiprocessing.synchronize import Condition
190 return Condition(lock)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
185 def Condition(lock=None):
187 Returns a condition object
189 from multiprocessing.synchronize import Condition
190 return Condition(lock)
  /art/runtime/
barrier.cc 29 condition_("GC barrier condition", lock_) {
56 // condition variable, thus waking this up.
  /cts/common/host-side/util/src/com/android/compatibility/common/util/
MetricsStore.java 53 * retrieves a metric result for the given condition and remove it from the internal
54 * storage. If there is no result for the given condition, it will return null.

Completed in 1371 milliseconds

<<31323334353637383940>>