Searched refs:take (Results 1 - 25 of 121) sorted by relevance

12345

/external/clang/test/Sema/
H A Dblock-args.c3 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);
/external/testng/src/main/java/org/testng/internal/
H A DPoolService.java48 Future<FutureType> take = m_completionService.take();
49 result.add(take.get());
/external/clang/test/CXX/temp/temp.param/
H A Dp15-cxx0x.cpp83 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/
H A DTestLogHandler.java41 public synchronized String take() throws InterruptedException { method in class:TestLogHandler
/external/okhttp/okio/okio/src/main/java/okio/
H A DSegmentPool.java36 static Segment take() { method in class:SegmentPool
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingBlockingQueue.java71 @Override public E take() throws InterruptedException { method in class:ForwardingBlockingQueue
72 return delegate().take();
H A DUninterruptibles.java216 * Invokes {@code queue.}{@link BlockingQueue#take() take()} uninterruptibly.
223 return queue.take();
/external/javassist/src/main/javassist/bytecode/analysis/
H A DIntQueue.java45 int take() { method in class:IntQueue
/external/mesa3d/src/gallium/drivers/r600/
H A Dllvm_wrapper.cpp18 return wrap(M.take());
/external/guava/guava/src/com/google/common/collect/
H A DForwardingBlockingDeque.java105 public E take() throws InterruptedException { method in class:ForwardingBlockingDeque
106 return delegate().take();
/external/libchrome/base/containers/
H A Dscoped_ptr_hash_map.h80 ScopedPtr take(iterator it) { function in class:base::ScopedPtrHashMap
90 ScopedPtr take(const Key& k) { function in class:base::ScopedPtrHashMap
95 return take(it);
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DQueueDispatcher.java45 return responseQueue.take();
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DQueueDispatcher.java43 return responseQueue.take();
/external/testng/src/main/java/org/testng/internal/remote/
H A DSlavePool.java45 host = m_hosts.take();
/external/webrtc/tools/matlab/
H A DmaxUnwrap.m9 % max: The maximum value that the sequence can take,
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingBlockingDequeTest.java102 forward.take();
103 assertEquals("[take]", getCalls());
/external/v8/test/mjsunit/es6/
H A Diteration-semantics.js85 function* take(iterable, n) {
178 assertEquals(45, fold(sum, 0, take(integers_from(0), 10)));
180 assertEquals(90, fold(sum, 0, take(skip_every(integers_from(0), 2), 10)));
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/
H A Dmock_lorgnette.py59 scan_output_fd = out_fd.take()
/external/libunwind/doc/
H A Dunw_is_fpreg.tex23 should not attempt to take its address.
H A Dunw_getcontext.tex27 should not attempt to take its address.
/external/libhevc/common/arm/
H A Dihevc_intra_pred_chroma_planar.s179 ldr r7, [r6], #-2 @src[2nt-1-row] (dec to take into account row)
181 ldr r11, [r6], #-2 @src[2nt-1-row] (dec to take into account row)
191 ldr r7, [r6], #-2 @src[2nt-1-row] (dec to take into account row)
242 ldr r11, [r6], #-2 @src[2nt-1-row] (dec to take into account row)
333 ldr r7, [r6], #-2 @src[2nt-1-row] (dec to take into account row)
/external/clang/include/clang/Sema/
H A DTemplateDeduction.h62 TemplateArgumentList *take() { function in class:clang::sema::TemplateDeductionInfo
/external/jetty/src/java/org/eclipse/jetty/server/
H A DLocalConnector.java72 Request request = _requests.take();
/external/llvm/lib/Support/Windows/
H A DWindowsSupport.h85 handle_type take() { function in class:ScopedHandle
/external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
H A DCrawler.java69 for (HttpUrl url; (url = queue.take()) != null; ) {

Completed in 1076 milliseconds

12345