Searched defs:Queue (Results 1 - 25 of 68) sorted by relevance

123

/external/chromium_org/media/base/
H A Ddecoder_buffer_queue.h58 typedef std::deque<scoped_refptr<DecoderBuffer> > Queue; typedef in class:media::DecoderBufferQueue
59 Queue queue_;
64 Queue in_order_queue_;
H A Dserial_runner.cc42 SerialRunner::Queue::Queue() {} function in class:media::SerialRunner::Queue
43 SerialRunner::Queue::~Queue() {}
45 void SerialRunner::Queue::Push(const base::Closure& closure) {
49 void SerialRunner::Queue::Push(
54 void SerialRunner::Queue::Push(
59 SerialRunner::BoundPipelineStatusCB SerialRunner::Queue::Pop() {
65 bool SerialRunner::Queue::empty() {
69 SerialRunner::SerialRunner(const Queue
[all...]
H A Dserial_runner.h32 class MEDIA_EXPORT Queue { class in class:media::SerialRunner
34 Queue();
35 ~Queue();
65 const Queue& bound_fns, const PipelineStatusCB& done_cb);
70 SerialRunner(const Queue& bound_fns, const PipelineStatusCB& done_cb);
76 Queue bound_fns_;
/external/chromium_org/testing/gtest/samples/
H A Dsample3-inl.h40 // Queue is a simple queue implemented as a singled-linked list.
44 class Queue;
46 // QueueNode is a node in a Queue, which consists of an element of
50 friend class Queue<E>;
74 class Queue { class
77 Queue() : head_(NULL), last_(NULL), size_(0) {} function in class:Queue
80 ~Queue() { Clear(); }
153 Queue* Map(F function) const {
154 Queue* new_queue = new Queue();
[all...]
/external/protobuf/gtest/samples/
H A Dsample3-inl.h40 // Queue is a simple queue implemented as a singled-linked list.
44 class Queue;
46 // QueueNode is a node in a Queue, which consists of an element of
50 friend class Queue<E>;
74 class Queue { class
78 Queue() : head_(NULL), last_(NULL), size_(0) {} function in class:Queue
81 ~Queue() { Clear(); }
154 Queue * Map(F function) const {
155 Queue * new_queue = new Queue();
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/
H A Dnative-messaging-example-host12 import Queue namespace
106 queue = Queue.Queue()
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/
H A Dbackground_tasks.py15 which communicates its progress updates through a Queue. The messages enqueued
21 import Queue namespace
134 self._log_queue = multiprocessing.Queue()
146 except Queue.Empty:
/external/chromium_org/v8/tools/testrunner/local/
H A Dpool.py6 from multiprocessing import Event, Process, Queue namespace
67 self.work_queue = Queue()
68 self.done_queue = Queue()
/external/chromium_org/v8/tools/testrunner/network/
H A Dendpoint.py31 import Queue namespace
/external/llvm/include/llvm/CodeGen/
H A DLatencyPriorityQueue.h37 /// Queue, the number of nodes that the node is the sole unscheduled
42 /// Queue - The queue.
43 std::vector<SUnit*> Queue; member in class:llvm::LatencyPriorityQueue
78 bool empty() const override { return Queue.empty(); }
H A DResourcePriorityQueue.h43 /// Queue, the number of nodes that the node is the sole unscheduled
48 /// Queue - The queue.
49 std::vector<SUnit*> Queue; member in class:llvm::ResourcePriorityQueue
119 bool empty() const override { return Queue.empty(); }
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dmsgutil.py41 import Queue namespace
127 self._queue = Queue.Queue()
160 except Queue.Empty:
193 self._queue = Queue.Queue()
/external/chromium_org/components/crash/tools/
H A Dgenerate_breakpad_symbols.py15 import Queue namespace
143 queue = Queue.Queue()
/external/chromium_org/native_client_sdk/src/tools/tests/
H A Dhttpd_test.py7 import Queue namespace
55 queue = Queue.Queue()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dmsgutil.py41 import Queue namespace
127 self._queue = Queue.Queue()
160 except Queue.Empty:
193 self._queue = Queue.Queue()
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dondemand_supply_task.cc55 void OndemandSupplyTask::Queue(const std::string& key) { function in class:i18n::addressinput::OndemandSupplyTask
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Dondemand_supply_task_test.cc68 void Queue(const std::string& key) { task_->Queue(key); } function in class:__anon12589::OndemandSupplyTaskTest
107 Queue("data/XA");
118 Queue("data/XA");
145 Queue("data/XA");
146 Queue("data/XA/aa");
147 Queue("data/XA/aa/bb");
148 Queue("data/XA/aa/bb/cc");
180 Queue("data/XA");
192 Queue("dat
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dmock.py35 import Queue namespace
116 self._queue = Queue.Queue()
H A Dtest_mock.py36 import Queue namespace
103 queue = Queue.Queue()
/external/chromium_org/build/android/pylib/perf/
H A Dsurface_stats_collector.py5 import Queue namespace
56 self._data_queue = Queue.Queue()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
H A Ddump_reader_multipart.py32 import Queue namespace
133 queue = Queue.Queue()
168 except Queue.Empty:
/external/llvm/lib/CodeGen/
H A DRegAllocBasic.cpp70 CompSpillWeight> Queue; member in class:__anon25788::RABasic
92 Queue.push(LI);
96 if (Queue.empty())
98 LiveInterval *LI = Queue.top();
99 Queue.pop();
/external/openfst/src/include/fst/script/
H A Dshortest-path.h71 typedef AutoQueue<StateId> Queue; typedef
72 Queue *queue = QueueConstructor<Queue, Arc,
74 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts(
83 typedef FifoQueue<StateId> Queue; typedef
84 Queue *queue = QueueConstructor<Queue, Arc,
86 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts(
95 typedef LifoQueue<StateId> Queue; typedef
96 Queue *queu
107 typedef NaturalShortestFirstQueue<StateId, Weight> Queue; typedef
119 typedef StateOrderQueue<StateId> Queue; typedef
131 typedef TopOrderQueue<StateId> Queue; typedef
[all...]
/external/chromium_org/build/android/pylib/symbols/
H A Delf_symbolizer.py11 import Queue namespace
59 of the Queue instance in Addr2Line) should be free from mind-blowing
238 self._out_queue = None # Queue.Queue instance (for buffering a2l stdout).
277 except Queue.Empty:
298 except Queue.Empty:
385 # The only reason of existence of this Queue (and the corresponding
388 self._out_queue = Queue.Queue()
419 writes to a Queue, whic
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dmessage_pool.py46 import Queue namespace
75 self._messages_to_worker = Queue.Queue()
76 self._messages_to_manager = Queue.Queue()
78 self._messages_to_worker = multiprocessing.Queue()
79 self._messages_to_manager = multiprocessing.Queue()
180 except Queue.Empty:
261 except Queue.Empty:

Completed in 1031 milliseconds

123