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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
block-args.c 3 void take(void*);
6 take(^(int x){});
7 take(^(int x, int y){});
8 take(^(int x, int y){});
9 take(^(int x, // expected-note {{previous declaration is here}}
13 take(^(int x) { return x+1; });
16 take(CP);
  /frameworks/base/core/java/com/android/internal/view/
IDragAndDropPermissions.aidl 26 void take(IBinder activityToken);
  /libcore/luni/src/main/java/java/util/concurrent/
CompletionService.java 12 * {@code submit} tasks for execution. Consumers {@code take}
30 * actions following a successful return from the corresponding {@code take()}.
69 Future<V> take() throws InterruptedException; method in interface:CompletionService
BlockingQueue.java 52 * <td>{@link #take take()}</td>
123 * 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();
60 * Result r = ecs.take().get();
165 public Future<V> take() throws InterruptedException { method in class:ExecutorCompletionService
166 return completionQueue.take();
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-v32s-2.s 2 ; take 32-bit immediate operands, as opposed to pre-v32 CRIS.
diffexp-ovwr.s 6 ; one is tested) can take "difference-expressions".
  /external/testng/src/main/java/org/testng/internal/
PoolService.java 48 Future<FutureType> take = m_completionService.take(); local
49 result.add(take.get());
  /frameworks/volley/src/test/java/com/android/volley/mock/
WaitableQueue.java 34 // TODO: this isn't really "until empty" it's "until next call to take() after empty"
44 public Request<?> take() throws InterruptedException { method in class:WaitableQueue
45 Request<?> item = super.take();
48 return take();
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 80 template<template<decltype(X)> class ...Take,
83 typedef types<typename Take<_>::type...> take; typedef in struct:ParameterPackExpansions::takedrop_impl::inner
88 template<unsigned N, typename...Ts> struct take { struct in namespace:ParameterPackExpansions
90 template inner<wrap<Ts>::template inner...>::take; // expected-error {{too few template arguments}}
97 using T1 = take<3, int, char, double, long>::type; // expected-note {{previous}}
104 using T2 = take<4, int, char, double, long>::type; // expected-note {{previous}}
112 using T3 = take<5, int, char, double, long>::type; // expected-note {{in instantiation of}}
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
TestLogHandler.java 41 public synchronized String take() throws InterruptedException { method in class:TestLogHandler
  /external/okhttp/okio/okio/src/main/java/okio/
SegmentPool.java 36 static Segment take() { method in class:SegmentPool
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingBlockingQueue.java 71 @Override public E take() throws InterruptedException { method in class:ForwardingBlockingQueue
72 return delegate().take();
  /frameworks/base/core/java/android/view/
DragAndDropPermissions.java 80 * Take the permissions and bind their lifetime to the activity.
85 public boolean take(IBinder activityToken) { method in class:DragAndDropPermissions
87 mDragAndDropPermissions.take(activityToken);
95 * Take the permissions. Must call {@link #release} explicitly.
  /frameworks/volley/src/test/java/com/android/volley/
CacheDispatcherTest.java 77 Request request = mNetworkQueue.take();
100 Request request = mNetworkQueue.take();
112 Request request = mNetworkQueue.take();
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
randnum.py 63 May take a very long time in specific situations. If maxvalue needs N bits
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 45 int take() { method in class:IntQueue
  /external/mesa3d/src/gallium/drivers/r600/
llvm_wrapper.cpp 18 return wrap(M.take());
  /frameworks/av/media/libstagefright/webm/
LinkedBlockingQueue.h 67 T take() { function in class:android::LinkedBlockingQueue
  /external/guava/guava/src/com/google/common/collect/
ForwardingBlockingDeque.java 105 public E take() throws InterruptedException { method in class:ForwardingBlockingDeque
106 return delegate().take();
  /external/libchrome/base/containers/
scoped_ptr_hash_map.h 80 ScopedPtr take(iterator it) { function in class:base::ScopedPtrHashMap
90 ScopedPtr take(const Key& k) { function in class:base::ScopedPtrHashMap
95 return take(it);
  /frameworks/base/core/java/android/speech/tts/
SynthesisPlaybackQueueItem.java 95 // take() will block until:
101 while ((buffer = take()) != null) {
132 // Wake up the audio playback thread if it was waiting on take().
133 // take() will return null since mStopped was true, and will then
160 // Unblocks the audio playback thread if it was waiting on take()
188 // proceed to leave the write loop since take() will return null when
202 private byte[] take() throws InterruptedException { method in class:SynthesisPlaybackQueueItem
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
QueueDispatcher.java 45 return responseQueue.take();
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
QueueDispatcher.java 43 return responseQueue.take();
  /external/testng/src/main/java/org/testng/internal/remote/
SlavePool.java 45 host = m_hosts.take();

Completed in 520 milliseconds

1 2 3 4 5 6 7 8 91011>>