| /external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/ |
| ctor_comp_rcontainer.pass.cpp | 10 // <queue> 14 #include <queue>
|
| ctor_iter_iter_comp_rcont.pass.cpp | 10 // <queue> 16 #include <queue>
|
| /external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/ |
| pop.pass.cpp | 10 // <queue> 16 #include <queue>
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/ |
| ctor_comp_container.pass.cpp | 10 // <queue> 14 #include <queue>
|
| ctor_comp_rcontainer.pass.cpp | 10 // <queue> 14 #include <queue>
|
| ctor_iter_iter_comp_rcont.pass.cpp | 10 // <queue> 16 #include <queue>
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/ |
| pop.pass.cpp | 10 // <queue> 16 #include <queue>
|
| /external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
| RefQueueWorker.java | 54 /** The reference queue to monitor. */ 71 * @param queue the queue on which to wait for references 74 public RefQueueWorker(ReferenceQueue<?> queue, RefQueueHandler handler) { 75 if (queue == null) { 76 throw new IllegalArgumentException("Queue must not be null."); 82 refQueue = queue;
|
| /external/chromium_org/android_webview/browser/ |
| deferred_gpu_command_service.h | 8 #include <queue> 48 // Flush the idle queue until it is empty. This is different from 68 std::queue<base::Closure> tasks_; 69 std::queue<std::pair<base::Time, base::Closure> > idle_tasks_;
|
| /external/chromium_org/cc/layers/ |
| nine_patch_layer_unittest.cc | 59 ResourceUpdateQueue queue; local 63 test_layer->Update(&queue, &occlusion_tracker); 75 test_layer->Update(&queue, &occlusion_tracker);
|
| /external/chromium_org/cc/resources/ |
| resource_update_controller.h | 34 scoped_ptr<ResourceUpdateQueue> queue, 37 client, task_runner, queue.Pass(), resource_provider)); 57 scoped_ptr<ResourceUpdateQueue> queue,
|
| /external/chromium_org/content/browser/renderer_host/pepper/ |
| pepper_network_proxy_host.h | 8 #include <queue> 91 std::queue<UnsentRequest> unsent_requests_; 95 std::queue<net::ProxyService::PacRequest*> pending_requests_;
|
| /external/chromium_org/device/hid/ |
| hid_connection_linux.h | 8 #include <queue> 49 std::queue<PendingHidReport> pending_reports_; 50 std::queue<PendingHidRead> pending_reads_;
|
| hid_connection_mac.h | 11 #include <queue> 70 std::queue<PendingHidReport> pending_reports_; 71 std::queue<PendingHidRead> pending_reads_;
|
| /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
| event.hpp | 29 #include "core/queue.hpp" 65 virtual cl_command_queue queue() const = 0; 86 /// Class that represents a task executed by a command queue. 89 /// with a given command queue \a q and a given OpenCL \a command. 90 /// hard_event instances created for the same queue are implicitly 105 virtual cl_command_queue queue() const; 123 /// or command queue. It's considered complete as soon as all its 132 virtual cl_command_queue queue() const;
|
| /external/chromium_org/webkit/browser/fileapi/ |
| recursive_operation_delegate.h | 8 #include <queue> 142 std::stack<std::queue<FileSystemURL> > pending_directory_stack_; 143 std::queue<FileSystemURL> pending_files_;
|
| /external/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/ |
| ctor_container_alloc.pass.cpp | 10 // <queue> 13 // queue(const container_type& c, const Alloc& a); 15 #include <queue> 33 : public std::queue<int, C> 35 typedef std::queue<int, C> base;
|
| ctor_rcontainer_alloc.pass.cpp | 10 // <queue> 13 // queue(const container_type& c, const Alloc& a); 15 #include <queue> 37 : public std::queue<T, C> 39 typedef std::queue<T, C> base;
|
| ctor_rqueue_alloc.pass.cpp | 10 // <queue> 13 // queue(queue&& q, const Alloc& a); 15 #include <queue> 37 : public std::queue<T, C> 39 typedef std::queue<T, C> base;
|
| /external/mesa3d/src/gallium/state_trackers/clover/core/ |
| event.hpp | 29 #include "core/queue.hpp" 65 virtual cl_command_queue queue() const = 0; 86 /// Class that represents a task executed by a command queue. 89 /// with a given command queue \a q and a given OpenCL \a command. 90 /// hard_event instances created for the same queue are implicitly 105 virtual cl_command_queue queue() const; 123 /// or command queue. It's considered complete as soon as all its 132 virtual cl_command_queue queue() const;
|
| /frameworks/base/test-runner/src/android/test/ |
| LoaderTestCase.java | 56 // The test thread blocks on this queue until the loader puts it's result in 57 final ArrayBlockingQueue<T> queue = new ArrayBlockingQueue<T>(1); local 60 // when it puts the result into the blocking queue 70 queue.add(data); 88 // Block on the queue waiting for the result of the load to be inserted 92 result = queue.take();
|
| /frameworks/volley/src/com/android/volley/toolbox/ |
| Volley.java | 65 RequestQueue queue = new RequestQueue(new DiskBasedCache(cacheDir), network); local 66 queue.start(); 68 return queue;
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/ |
| ctor_container_alloc.pass.cpp | 10 // <queue> 13 // queue(const container_type& c, const Alloc& a); 15 #include <queue> 33 : public std::queue<int, C> 35 typedef std::queue<int, C> base;
|
| ctor_rcontainer_alloc.pass.cpp | 10 // <queue> 13 // queue(const container_type& c, const Alloc& a); 15 #include <queue> 37 : public std::queue<T, C> 39 typedef std::queue<T, C> base;
|
| ctor_rqueue_alloc.pass.cpp | 10 // <queue> 13 // queue(queue&& q, const Alloc& a); 15 #include <queue> 37 : public std::queue<T, C> 39 typedef std::queue<T, C> base;
|