HomeSort by relevance Sort by last modified time
    Searched refs:take (Results 1 - 25 of 319) 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);
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
getonescriptspan.cc 370 int take = 0; local
392 while (take < byte_length_) {
396 while (take < byte_length_) {
398 if (IsSpecial(next_byte_[take]) && !is_plain_text_) {
399 // printf("\"%c\" ", next_byte_[take]);
400 if (next_byte_[take] == '<') {
404 } else if (next_byte_[take] == '>') {
408 } else if (next_byte_[take] == '&') {
410 EntityToBuffer(next_byte_ + take, byte_length_ - take,
    [all...]
  /external/chromium_org/net/quic/
spdy_utils.cc 21 scoped_ptr<SpdyFrame> block(builder.take());
quic_data_writer.h 36 char* take();
quic_data_writer_test.cc 25 scoped_ptr<char[]> data(writer.take());
85 scoped_ptr<char[]> data(writer.take());
151 scoped_ptr<char[]> data(writer.take());
  /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 51 * <td>{@link #take take()}</td>
122 * while (true) { consume(queue.take()); }
233 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();
  /external/chromium_org/ppapi/native_client/src/untrusted/nacl_ppapi_util/
nacl_ppapi_util.h 107 nacl::MutexLocker take(&mu_);
113 nacl::MutexLocker take(&mu_);
123 nacl::MutexLocker take(&mu_);
  /frameworks/volley/tests/src/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/chromium_org/net/spdy/
spdy_frame_builder_test.cc 34 scoped_ptr<SpdyFrame> frame(builder.take());
57 scoped_ptr<SpdyFrame> built(builder.take());
74 scoped_ptr<SpdyFrame> built(builder.take());
  /external/okhttp/okio/src/main/java/okio/
SegmentPool.java 38 Segment take() { method in class:SegmentPool
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
ArchiveResourceCollection.cpp 88 RefPtr<MHTMLArchive> archive = m_subframes.take(frameName);
92 return m_subframes.take(url.string());
  /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/volley/tests/src/com/android/volley/
CacheDispatcherTest.java 78 Request request = mNetworkQueue.take();
101 Request request = mNetworkQueue.take();
113 Request request = mNetworkQueue.take();
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementObserver.cpp 72 CustomElementObserver* observer = elementObservers().take(element);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
llvm_wrapper.cpp 18 return wrap(M.take());
  /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());
  /external/smack/src/org/jivesoftware/smackx/muc/
ConnectionDetachedPacketCollector.java 83 return resultQueue.take();
  /frameworks/av/media/libstagefright/webm/
LinkedBlockingQueue.h 67 T take() { function in class:android::LinkedBlockingQueue
  /external/chromium_org/chrome/browser/resources/about_welcome_android/
about_welcome_android.css 41 #take-a-tour {
60 #take-a-tour:active {
112 #take-a-tour,
  /external/chromium_org/base/containers/
scoped_ptr_hash_map.h 75 scoped_ptr<Value> take(iterator it) { function in class:base::ScopedPtrHashMap
85 scoped_ptr<Value> take(const Key& k) { function in class:base::ScopedPtrHashMap
90 return take(it);
  /external/chromium_org/chrome/renderer/resources/extensions/
sync_file_system_custom_bindings.js 16 // Functions which take in an [instanceOf=FileEntry].
26 // Functions which take in a FileEntry array.
39 // Functions which take in an [instanceOf=DOMFileSystem].

Completed in 1014 milliseconds

1 2 3 4 5 6 7 8 91011>>