HomeSort by relevance Sort by last modified time
    Searched refs:Condition (Results 176 - 200 of 356) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/native/include/gui/
BufferQueue.h 524 // mDequeueCondition condition used for dequeueBuffer in synchronous mode
525 mutable Condition mDequeueCondition;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
88 class Condition(threading._Condition):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
88 class Condition(threading._Condition):
  /external/eigen/Eigen/src/Core/util/
Meta.h 28 template<bool Condition, typename Then, typename Else>
84 * according to a compile time condition.
86 template<bool Condition, typename T> struct enable_if;
  /frameworks/av/cmds/stagefright/
stream.cpp 139 Condition mCondition;
291 Condition mCondition;
  /frameworks/av/include/media/stagefright/
OMXCodec.h 215 Condition mAsyncCompletion;
228 Condition mBufferFilled;
  /frameworks/av/services/audioflinger/
AudioPolicyService.h 211 Condition mCond; // condition for status return
254 Condition mWaitWorkCV;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object):
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
234 'must acquire() condition before using wait()'
302 self._cond = Condition(Lock())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
192 # Condition variable
195 class Condition(object):
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
234 'must acquire() condition before using wait()'
302 self._cond = Condition(Lock())
  /external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 380 const Stmt *Condition;
388 : Checkers(checkers), Condition(Cond), Eng(eng) {}
392 ProgramPoint L = PostCondition(Condition, Pred->getLocationContext(),
395 checkFn(Condition, C);
400 /// \brief Run checkers for branch condition.
401 void CheckerManager::runCheckersForBranchCondition(const Stmt *Condition,
407 CheckBranchConditionContext C(BranchConditionCheckers, Condition, Eng);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
217 # Internal methods used by condition variables
241 def Condition(*args, **kwargs):
242 """Factory function that returns a new condition variable object.
244 A condition variable allows one or more threads to wait until they are
255 """Condition variables allow one or more threads to wait until they are
291 return "<Condition(%s, %d)>" % (self.__lock, len(self.__waiters))
315 awakened by a notify() or notifyAll() call for the same condition
373 """Wake up one or more threads waiting on this condition, if any.
378 This method wakes up at most n of the threads waiting for the condition
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
217 # Internal methods used by condition variables
241 def Condition(*args, **kwargs):
242 """Factory function that returns a new condition variable object.
244 A condition variable allows one or more threads to wait until they are
255 """Condition variables allow one or more threads to wait until they are
291 return "<Condition(%s, %d)>" % (self.__lock, len(self.__waiters))
315 awakened by a notify() or notifyAll() call for the same condition
373 """Wake up one or more threads waiting on this condition, if any.
378 This method wakes up at most n of the threads waiting for the condition
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 301 /// terminator with the given value as its condition, and if so what value to
560 // and we can figure out the condition value for any predecessor block.
570 // Figure out what value to use for the condition.
576 assert(isa<UndefValue>(Cond) && "Unexpected condition value");
649 // because now the condition in this block can be threaded through
675 Value *Condition;
680 Condition = BI->getCondition();
682 Condition = SI->getCondition();
686 Condition = IB->getAddress()->stripPointerCasts();
692 // Run constant folding to see if we can reduce the condition to a simpl
    [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.cc 269 Condition cc,
452 void MacroAssembler::Assert(Condition cc, BailoutReason reason) {
475 void MacroAssembler::Check(Condition cc, BailoutReason reason) {
    [all...]
lithium-codegen-x64.cc 680 void LCodeGen::DeoptimizeIf(Condition cc,
729 void LCodeGen::DeoptimizeIf(Condition cc,
1757 Condition condition = (operation == HMathMinMax::kMathMin) local
1791 Condition condition = (operation == HMathMinMax::kMathMin) ? below : above; local
2303 Condition condition = TokenToCondition(op, false); local
2593 Condition condition = TokenToCondition(op, false); local
4087 Condition condition = local
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 246 Condition cc,
431 void MacroAssembler::Assert(Condition cc, const char* msg) {
454 void MacroAssembler::Check(Condition cc, const char* msg) {
    [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.cc 63 Condition cond,
78 Condition cond,
179 Condition cc,
1105 Condition cc,
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 62 Condition cond,
77 Condition cond,
178 Condition cc,
1106 Condition cc,
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 8 import java.util.concurrent.locks.Condition;
75 * Concurrency control uses the classic two-condition algorithm
82 /** Condition for waiting takes */
83 private final Condition notEmpty;
85 /** Condition for waiting puts */
86 private final Condition notFull;
    [all...]
LinkedBlockingDeque.java 13 import java.util.concurrent.locks.Condition;
128 /** Condition for waiting takes */
129 private final Condition notEmpty = lock.newCondition();
131 /** Condition for waiting puts */
132 private final Condition notFull = lock.newCondition();
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ConnPoolByRoute.java 39 import java.util.concurrent.locks.Condition;
161 * @param cond the condition to wait for
166 protected WaitingThread newWaitingThread(Condition cond,
  /external/chromium_org/tools/traceline/traceline/
assembler.h 66 enum Condition {
410 void jcc(Condition cc, Label* l) {
  /external/smack/src/org/jivesoftware/smackx/
ServiceDiscoveryManager.java 238 response.setError(new XMPPError(XMPPError.Condition.item_not_found));
282 response.setError(new XMPPError(XMPPError.Condition.item_not_found));
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamSession.java 454 XMPPError.Condition.unexpected_request));
464 XMPPError.Condition.bad_request));
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.h 58 Condition mCondition;
233 Condition mSignal;

Completed in 627 milliseconds

1 2 3 4 5 6 78 91011>>