Searched refs:queue (Results 26 - 50 of 404) sorted by relevance

1234567891011>>

/external/webkit/Tools/QueueStatusServer/model/
H A Dqueuepropertymixin_unittest.py44 test_object.queue = mac_ews
45 self.assertEquals(test_object.queue.name(), "mac-ews")
47 test_object.queue = None
H A Dattachment.py90 def position_in_queue(self, queue):
91 return self._queue_positions().get(queue.name())
93 def status_for_queue(self, queue):
95 queue_summary = self.summary().get(queue.name_with_underscores())
112 return dict([(items.queue.name(), items.display_position_for_attachment(self.id)) for items in all_work_items])
124 for queue in Queue.all():
125 summary[queue.name_with_underscores()] = None
126 status = QueueStatus.all().filter('queue_name =', queue.name()).filter('active_patch_id =', self.id).order('-date').get()
129 summary[queue.name_with_underscores()] = {
/external/webkit/Tools/QueueStatusServer/handlers/
H A Dnextpatch.py41 queue = Queue.queue_with_name(queue_name)
42 if not queue:
46 patch_id = db.run_in_transaction(self._assign_patch, queue.active_work_items().key(), queue.work_items().item_ids)
H A Drecentstatus.py41 def __init__(self, queue):
42 self._queue = queue
43 self._work_items = queue.work_items()
44 self._last_status = QueueStatus.all().filter("queue_name =", queue.name()).order("-date").get()
46 # FIXME: name and display_name should be replaced by a .queue() accessor.
92 "queues": [QueueBubble(queue) for queue in Queue.all()],
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dearlywarningsystem_unittest.py45 queue = TestEWS()
46 queue.bind_to_tool(MockTool(log_executive=True))
47 queue._options = MockOptions(port=None)
49 OutputCapture().assert_outputs(self, queue._can_build, [], expected_stderr=expected_stderr)
54 queue.run_webkit_patch = mock_run_webkit_patch
56 OutputCapture().assert_outputs(self, queue._can_build, [], expected_stderr=expected_stderr)
60 queue = AbstractReviewQueue()
61 queue.bind_to_tool(MockTool())
66 queue.review_patch = mock_review_patch
67 mock_patch = queue
[all...]
/external/webkit/Source/WebKit2/Platform/win/
H A DWorkQueueWin.cpp32 inline WorkQueue::WorkItemWin::WorkItemWin(PassOwnPtr<WorkItem> item, WorkQueue* queue) argument
34 , m_queue(queue)
38 PassRefPtr<WorkQueue::WorkItemWin> WorkQueue::WorkItemWin::create(PassOwnPtr<WorkItem> item, WorkQueue* queue) argument
40 return adoptRef(new WorkItemWin(item, queue));
47 inline WorkQueue::HandleWorkItem::HandleWorkItem(HANDLE handle, PassOwnPtr<WorkItem> item, WorkQueue* queue) argument
48 : WorkItemWin(item, queue)
55 PassRefPtr<WorkQueue::HandleWorkItem> WorkQueue::HandleWorkItem::createByAdoptingHandle(HANDLE handle, PassOwnPtr<WorkItem> item, WorkQueue* queue) argument
57 return adoptRef(new HandleWorkItem(handle, item, queue));
71 WorkQueue* queue = item->queue(); local
124 WorkQueue* queue = static_cast<WorkQueue*>(context); local
216 WorkQueue* queue; member in struct:TimerContext
[all...]
/external/webkit/Source/WebKit/mac/Panels/
H A DWebPanelAuthenticationHandler.m70 NSMutableArray *queue = [windowToChallengeQueue objectForKey:window];
71 if (queue == nil) {
72 queue = [[NSMutableArray alloc] init];
73 [windowToChallengeQueue _webkit_setObject:queue forUncopiedKey:window];
74 [queue release];
76 [queue addObject:challenge];
81 NSMutableArray *queue = [windowToChallengeQueue objectForKey:window];
82 if (queue == nil) {
86 NSURLAuthenticationChallenge *challenge = [[queue objectAtIndex:0] retain];
87 [queue removeObjectAtInde
[all...]
/external/chromium/base/threading/
H A Dthread_collision_warner_unittest.cc151 explicit QueueUser(NonThreadSafeQueue& queue) argument
152 : queue_(queue) {}
165 NonThreadSafeQueue queue(local_reporter);
167 QueueUser queue_user_a(queue);
168 QueueUser queue_user_b(queue);
209 explicit QueueUser(NonThreadSafeQueue& queue) argument
210 : queue_(queue) {}
223 NonThreadSafeQueue queue(local_reporter);
225 QueueUser queue_user_a(queue);
226 QueueUser queue_user_b(queue);
269 QueueUser(NonThreadSafeQueue& queue, base::Lock& lock) argument
343 QueueUser(NonThreadSafeQueue& queue, base::Lock& lock) argument
[all...]
H A Dworker_pool_posix.h13 // task queue, it does not own the worker threads. The worker threads ask the
28 #include <queue>
78 std::queue<Task*> tasks_;
/external/chromium/net/ftp/
H A Dftp_ctrl_response_buffer.h10 #include <queue>
77 std::queue<ParsedLine> lines_;
90 // As we read full responses (possibly multiline), we add them to the queue.
91 std::queue<FtpCtrlResponse> responses_;
/external/guava/guava/src/com/google/common/collect/
H A DQueues.java72 * @param elements the elements that the queue should contain, in order
80 ConcurrentLinkedQueue<E> queue = new ConcurrentLinkedQueue<E>();
81 Iterables.addAll(queue, elements);
82 return queue;
101 * @param capacity the capacity of this queue
112 * @param elements the elements that the queue should contain, in order
119 LinkedBlockingQueue<E> queue = new LinkedBlockingQueue<E>();
120 Iterables.addAll(queue, elements);
121 return queue;
140 * @param elements the elements that the queue shoul
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DBasicPoolEntryRef.java56 * @param queue the reference queue, or <code>null</code>
59 ReferenceQueue<Object> queue) {
60 super(entry, queue);
58 BasicPoolEntryRef(BasicPoolEntry entry, ReferenceQueue<Object> queue) argument
/external/chromium/chrome/browser/ui/app_modal_dialogs/
H A Dapp_modal_dialog_queue.h9 #include <queue>
15 // Keeps a queue of AppModalDialogs, making sure only one app modal
23 // Adds a modal dialog to the queue, if there are no other dialogs in the
24 // queue, the dialog will be shown immediately. Once it is shown, the
35 // Removes the current dialog in the queue (the one that is being shown).
36 // Shows the next dialog in the queue, if any is present. This does not
69 // app_modal_dialog_queue_ until one is valid or the queue is empty. This
70 // returns NULL if there are no more dialogs, or all the dialogs in the queue
75 // currently modal dialog at the front of the queue.
76 std::queue<AppModalDialo
[all...]
/external/dhcpcd/
H A Deloop.h44 void add_q_timeout_sec(int queue, time_t, void (*)(void *), void *);
45 void add_q_timeout_tv(int queue, const struct timeval *, void (*)(void *),
/external/openfst/src/include/fst/script/
H A Dshortest-path.h72 Queue *queue = QueueConstructor<Queue, Arc, local
75 queue, ArcFilter(), opts.nshortest, opts.unique,
79 delete queue;
84 Queue *queue = QueueConstructor<Queue, Arc, local
87 queue, ArcFilter(), opts.nshortest, opts.unique,
91 delete queue;
96 Queue *queue = QueueConstructor<Queue, Arc, local
99 queue, ArcFilter(), opts.nshortest, opts.unique,
103 delete queue;
108 Queue *queue local
120 Queue *queue = QueueConstructor<Queue, Arc, local
132 Queue *queue = QueueConstructor<Queue, Arc, local
[all...]
/external/chromium/net/websockets/
H A Dwebsocket_throttle.cc78 ConnectingQueue* queue = new ConnectingQueue(); local
79 queue->push_back(job);
80 addr_map_[addrkey] = queue;
116 ConnectingQueue* queue = iter->second; local
117 // Job may not be front of queue when job is closed early while waiting.
118 for (ConnectingQueue::iterator iter = queue->begin();
119 iter != queue->end();
122 queue->erase(iter);
126 if (queue->empty()) {
127 delete queue;
149 ConnectingQueue* queue = iter->second; local
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DPriorityQueueTest.java194 PriorityQueue<Object> queue = new PriorityQueue<Object>();
195 assertNotNull(queue);
196 assertEquals(0, queue.size());
197 assertNull(queue.comparator());
204 PriorityQueue<Object> queue = new PriorityQueue<Object>(100);
205 assertNotNull(queue);
206 assertEquals(0, queue.size());
207 assertNull(queue.comparator());
214 PriorityQueue<Object> queue = new PriorityQueue<Object>(100,
216 assertNotNull(queue);
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocketserver.h45 // called to allow the socket server to use the thread's message queue for
47 virtual void SetMessageQueue(MessageQueue* queue) {} argument
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/
H A DGeometryComparator.java33 package com.jme3.renderer.queue;
H A DNullComparator.java33 package com.jme3.renderer.queue;
/external/stlport/stlport/
H A Dqueue42 # include_next <queue>
44 # include _STLP_NATIVE_HEADER(queue)
/external/webkit/Tools/DumpRenderTree/
H A DWorkQueue.h38 void queue(WorkQueueItem*);
/external/javassist/src/main/javassist/bytecode/analysis/
H A DAnalyzer.java133 IntQueue queue = new IntQueue();
141 queue.add(iter.next());
142 while (!queue.isEmpty()) {
143 analyzeNextEntry(method, iter, queue, executor);
168 IntQueue queue, Executor executor) throws BadBytecode {
169 int pos = queue.take();
185 mergeTableSwitch(queue, pos, iter, frame);
187 mergeLookupSwitch(queue, pos, iter, frame);
189 mergeRet(queue, iter, pos, frame, subroutine);
195 mergeJsr(queue, frame
167 analyzeNextEntry(MethodInfo method, CodeIterator iter, IntQueue queue, Executor executor) argument
276 merge(IntQueue queue, Frame frame, int target) argument
292 mergeExceptionHandlers(IntQueue queue, MethodInfo method, int pos, Frame frame) argument
306 mergeJsr(IntQueue queue, Frame frame, Subroutine sub, int pos, int next) argument
347 mergeLookupSwitch(IntQueue queue, int pos, CodeIterator iter, Frame frame) argument
361 mergeRet(IntQueue queue, CodeIterator iter, int pos, Frame frame, Subroutine subroutine) argument
400 mergeTableSwitch(IntQueue queue, int pos, CodeIterator iter, Frame frame) argument
[all...]
/external/chromium/chrome/browser/profiles/
H A Dprofile_dependency_manager.cc75 std::deque<ProfileKeyedServiceFactory*> queue; local
78 std::back_inserter(queue));
80 std::deque<ProfileKeyedServiceFactory*>::iterator queue_end = queue.end();
83 queue_end = std::remove(queue.begin(), queue_end, it->second);
85 queue.erase(queue_end, queue.end());
90 while (!queue.empty()) {
91 ProfileKeyedServiceFactory* node = queue.front();
92 queue.pop_front();
113 queue
[all...]
/external/chromium/chrome/browser/net/
H A Dpredictor_unittest.cc496 Predictor::HostNameQueue queue; local
500 // First check high priority queue FIFO functionality.
501 EXPECT_TRUE(queue.IsEmpty());
502 queue.Push(first, UrlInfo::LEARNED_REFERAL_MOTIVATED);
503 EXPECT_FALSE(queue.IsEmpty());
504 queue.Push(second, UrlInfo::MOUSE_OVER_MOTIVATED);
505 EXPECT_FALSE(queue.IsEmpty());
506 EXPECT_EQ(queue.Pop(), first);
507 EXPECT_FALSE(queue.IsEmpty());
508 EXPECT_EQ(queue
523 Predictor::HostNameQueue queue; local
[all...]

Completed in 504 milliseconds

1234567891011>>