HomeSort by relevance Sort by last modified time
    Searched defs:take (Results 1 - 25 of 36) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/concurrent/
CompletionService.java 12 * <tt>submit</tt> tasks for execution. Consumers <tt>take</tt>
30 * actions following a successful return from the corresponding {@code take()}.
70 Future<V> take() throws InterruptedException; method in interface:CompletionService
BlockingQueue.java 51 * <td>{@link #take take()}</td>
122 * while (true) { consume(queue.take()); }
234 E take() throws InterruptedException; method in interface:BlockingQueue
ExecutorCompletionService.java 12 * upon completion, placed on a queue accessible using {@code take}.
36 * Result r = ecs.take().get();
61 * Result r = ecs.take().get();
163 public Future<V> take() throws InterruptedException { method in class:ExecutorCompletionService
164 return completionQueue.take();
BlockingDeque.java 136 * <td>{@link #take() take()}</td>
510 E take() throws InterruptedException; method in interface:BlockingDeque
DelayQueue.java 25 * removed using <tt>take</tt> or <tt>poll</tt>, they are otherwise
52 * signal some other thread before returning from take() or
173 public E take() throws InterruptedException { method in class:DelayQueue
ArrayBlockingQueue.java 28 * will result in the operation blocking; attempts to {@code take} an
60 /** items index for next take, poll, peek or remove */
131 * Extracts element at current take position, advances, and signals.
340 public E take() throws InterruptedException { method in class:ArrayBlockingQueue
LinkedBlockingDeque.java 648 public E take() throws InterruptedException { method in class:LinkedBlockingDeque
    [all...]
LinkedBlockingQueue.java 60 * used. When a put notices that it has enabled at least one take,
123 /** Lock held by take, poll, etc */
136 * Signals a waiting take. Called only from put/offer (which do not
150 * Signals a waiting put. Called only from take/poll.
303 // Note: convention in all put/take/etc is to preset local var
405 public E take() throws InterruptedException { method in class:LinkedBlockingQueue
756 * still have it to return even if lost race with a take etc.
PriorityBlockingQueue.java 501 public E take() throws InterruptedException { method in class:PriorityBlockingQueue
    [all...]
ScheduledThreadPoolExecutor.java 818 * signal some other thread before returning from take() or
1044 public RunnableScheduledFuture take() throws InterruptedException { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
    [all...]
SynchronousQueue.java 72 * or "requests" -- slots representing take operations, or is
81 * take. These are unified into a single method because in dual
82 * data structures, the put and take operations are symmetrical,
139 * Performs a put or take.
486 * from non-null to null (for put) or vice versa (for take).
586 /* Basic algorithm is to loop trying to take either of
857 public E take() throws InterruptedException { method in class:SynchronousQueue
    [all...]
  /external/chromium/base/memory/
scoped_ptr_unittest.cc 60 ConDecLogger* take = scoper.release(); local
63 delete take;
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 45 int take() { method in class:IntQueue
  /external/llvm/include/llvm/ADT/
OwningPtr.h 25 /// pointee object can be taken away from OwningPtr by using the take method.
48 /// take - Reset the owning pointer to null and return its pointer. This does
50 T *take() { function in class:llvm::OwningPtr
102 /// take - Reset the owning pointer to null and return its pointer. This does
104 T *take() { function in class:llvm::OwningArrayPtr
  /external/chromium/net/spdy/
spdy_frame_builder.h 44 SpdyFrame* take() { function in class:spdy::SpdyFrameBuilder
  /external/clang/include/clang/Sema/
TemplateDeduction.h 64 /// \brief Take ownership of the deduced template argument list.
65 TemplateArgumentList *take() { function in class:clang::sema::TemplateDeductionInfo
Ownership.h 243 PtrTy take() const { return Val; } function in class:clang::ActionResult
285 PtrTy take() const { return get(); } function in class:clang::ActionResult
380 PtrTy *take() { function in class:clang::ASTOwningVector
384 template<typename T> T **takeAs() { return reinterpret_cast<T**>(take()); }
402 return ASTMultiPtr<T>(vec.take(), vec.size());
  /external/llvm/lib/Support/Windows/
Windows.h 79 HandleType take() { function in class:ScopedHandle
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictionaryPool.java 44 public DictAndProximity take() throws InterruptedException { method in class:DictionaryPool
50 return super.take();
61 return take();
  /external/webkit/Source/JavaScriptCore/runtime/
WeakGCMap.h 158 ExternalType take(const KeyType& key) function in class:JSC::WeakGCMap
160 HandleSlot slot = m_map.take(key);
181 HandleSlot slot = m_map.take(FinalizerCallback::keyForFinalizer(context, HandleTypes<MappedType>::getFromSlot(handle.slot())));
  /external/webkit/Source/JavaScriptCore/heap/
Heap.cpp 311 PassOwnPtr<TypeCountSet> take();
345 inline PassOwnPtr<TypeCountSet> TypeCounter::take() function in class:JSC::TypeCounter
359 return typeCounter.take();
376 return typeCounter.take();
  /external/webkit/Source/JavaScriptCore/wtf/
HashMap.h 85 MappedType take(const KeyType&); // efficient combination of get with remove
306 HashMap<T, U, V, W, MappedTraits>::take(const KeyType& key) function in class:WTF::HashMap
RefPtrHashMap.h 113 MappedType take(const KeyType&); // efficient combination of get with remove
114 MappedType take(RawKeyType); // efficient combination of get with remove
316 HashMap<RefPtr<T>, U, V, W, MappedTraits>::take(const KeyType& key) function in class:WTF::HashMap
329 HashMap<RefPtr<T>, U, V, W, MappedTraits>::take(RawKeyType key) function in class:WTF::HashMap
  /packages/apps/Browser/src/com/android/browser/
DataController.java 146 handleMessage(mMessageQueue.take());
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiService.java     [all...]

Completed in 1820 milliseconds

1 2