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

123456

/prebuilts/ndk/current/sources/third_party/googletest/googletest/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...]
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/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...]
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/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...]
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
H A Dconnection.py37 from Queue import Queue namespace
46 self._backlog_queue = Queue(backlog)
58 _in, _out = Queue(), Queue()
64 a, b = Queue(), Queue()
H A D__init__.py38 'Event', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
55 from Queue import Queue namespace
153 JoinableQueue = Queue
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
H A Dconnection.py37 from Queue import Queue namespace
46 self._backlog_queue = Queue(backlog)
58 _in, _out = Queue(), Queue()
64 a, b = Queue(), Queue()
H A D__init__.py38 'Event', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
55 from Queue import Queue namespace
153 JoinableQueue = Queue
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
H A Dconnection.py37 from Queue import Queue namespace
46 self._backlog_queue = Queue(backlog)
58 _in, _out = Queue(), Queue()
64 a, b = Queue(), Queue()
H A D__init__.py38 'Event', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
55 from Queue import Queue namespace
153 JoinableQueue = Queue
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
H A Dconnection.py37 from Queue import Queue namespace
46 self._backlog_queue = Queue(backlog)
58 _in, _out = Queue(), Queue()
64 a, b = Queue(), Queue()
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A DQueue.py11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
14 "Exception raised by Queue.get(block=0)/get_nowait()."
18 "Exception raised by Queue.put(block=0)/put_nowait()."
21 class Queue: class in inherits:
48 Used by Queue consumer threads. For each get() used to fetch a task,
71 """Blocks until all items in the Queue have been gotten and processed.
212 class PriorityQueue(Queue):
213 '''Variant of Queue that retrieves open entries in priority order (lowest first).
231 class LifoQueue(Queue):
232 '''Variant of Queue tha
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/
H A DQueue.py11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
14 "Exception raised by Queue.get(block=0)/get_nowait()."
18 "Exception raised by Queue.put(block=0)/put_nowait()."
21 class Queue: class in inherits:
48 Used by Queue consumer threads. For each get() used to fetch a task,
71 """Blocks until all items in the Queue have been gotten and processed.
212 class PriorityQueue(Queue):
213 '''Variant of Queue that retrieves open entries in priority order (lowest first).
231 class LifoQueue(Queue):
232 '''Variant of Queue tha
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A DQueue.py11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
14 "Exception raised by Queue.get(block=0)/get_nowait()."
18 "Exception raised by Queue.put(block=0)/put_nowait()."
21 class Queue: class in inherits:
48 Used by Queue consumer threads. For each get() used to fetch a task,
71 """Blocks until all items in the Queue have been gotten and processed.
212 class PriorityQueue(Queue):
213 '''Variant of Queue that retrieves open entries in priority order (lowest first).
231 class LifoQueue(Queue):
232 '''Variant of Queue tha
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A DQueue.py11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
14 "Exception raised by Queue.get(block=0)/get_nowait()."
18 "Exception raised by Queue.put(block=0)/put_nowait()."
21 class Queue: class in inherits:
48 Used by Queue consumer threads. For each get() used to fetch a task,
71 """Blocks until all items in the Queue have been gotten and processed.
212 class PriorityQueue(Queue):
213 '''Variant of Queue that retrieves open entries in priority order (lowest first).
231 class LifoQueue(Queue):
232 '''Variant of Queue tha
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
H A Dtest_replication.py280 import Queue namespace
281 self.m2c = Queue.Queue()
282 self.c2m = Queue.Queue()
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
H A D__init__.py51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
213 def Queue(maxsize=0): function
217 from multiprocessing.queues import Queue namespace
218 return Queue(maxsize)
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_dummy_thread.py10 import Queue namespace
128 testing_queue = Queue.Queue(1)
152 testing_queue = Queue.Queue(thread_count)
H A Dtest_queue.py2 # to ensure the Queue locks remain stable.
3 import Queue namespace
11 # A thread to run a function that unclogs a blocked Queue.
97 target_order = dict(Queue = [111, 333, 222],
105 self.assertTrue(not q.empty(), "Queue should not be empty")
106 self.assertTrue(not q.full(), "Queue should not be full")
110 self.assertTrue(q.full(), "Queue should be full")
114 except Queue.Full:
119 except Queue.Full:
127 self.assertTrue(q.empty(), "Queue shoul
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
H A Dtest_replication.py280 import Queue namespace
281 self.m2c = Queue.Queue()
282 self.c2m = Queue.Queue()
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
H A D__init__.py51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
213 def Queue(maxsize=0): function
217 from multiprocessing.queues import Queue namespace
218 return Queue(maxsize)
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_dummy_thread.py10 import Queue namespace
128 testing_queue = Queue.Queue(1)
152 testing_queue = Queue.Queue(thread_count)
H A Dtest_queue.py2 # to ensure the Queue locks remain stable.
3 import Queue namespace
11 # A thread to run a function that unclogs a blocked Queue.
97 target_order = dict(Queue = [111, 333, 222],
105 self.assertTrue(not q.empty(), "Queue should not be empty")
106 self.assertTrue(not q.full(), "Queue should not be full")
110 self.assertTrue(q.full(), "Queue should be full")
114 except Queue.Full:
119 except Queue.Full:
127 self.assertTrue(q.empty(), "Queue shoul
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
H A Dtest_replication.py280 import Queue namespace
281 self.m2c = Queue.Queue()
282 self.c2m = Queue.Queue()
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
H A D__init__.py51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
94 The managers methods such as `Lock()`, `Condition()` and `Queue()`
213 def Queue(maxsize=0): function
217 from multiprocessing.queues import Queue namespace
218 return Queue(maxsize)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_dummy_thread.py10 import Queue namespace
128 testing_queue = Queue.Queue(1)
152 testing_queue = Queue.Queue(thread_count)

Completed in 648 milliseconds

123456