Searched defs:queue (Results 51 - 75 of 247) sorted by path

12345678910

/external/chromium_org/cc/trees/
H A Dthread_proxy.cc415 // The texture upload queue may reference textures that were just purged,
416 // clear them from the queue.
808 scoped_ptr<ResourceUpdateQueue> queue = local
811 bool updated = layer_tree_host()->UpdateLayers(queue.get());
865 queue.release()));
898 scoped_ptr<ResourceUpdateQueue> queue(raw_queue);
913 queue->ClearUploadsToEvictedResources();
926 queue.Pass(),
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfile_browser_handlers.cc338 extensions::LazyBackgroundTaskQueue* queue = local
341 if (!queue->ShouldEnqueueTask(profile_, extension_.get())) {
345 queue->AddPendingTask(
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dcounting_policy.cc208 // queue, flush the queue out now to prevent any false merging (actions
236 ActionQueue queue; local
237 queue.swap(queued_actions_);
247 if (queue.empty() && !clean_database)
285 for (ActionQueue::iterator i = queue.begin(); i != queue.end(); ++i) {
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Didentity_mint_queue_unittest.cc34 IdentityMintRequestQueue queue; local
40 queue.RequestStart(type, *key, &request1);
41 queue.RequestComplete(type, *key, &request1);
44 queue.RequestStart(type, *key, &request2);
45 queue.RequestComplete(type, *key, &request2);
51 IdentityMintRequestQueue queue; local
56 queue.RequestStart(type, *key, &request1);
57 queue.RequestComplete(type, *key, &request1);
63 IdentityMintRequestQueue queue; local
70 queue
86 IdentityMintRequestQueue queue; local
104 IdentityMintRequestQueue queue; local
119 IdentityMintRequestQueue queue; local
[all...]
/external/chromium_org/chrome/browser/media/
H A Dmedia_capture_devices_dispatcher.cc790 RequestsQueue& queue = pending_requests_[web_contents]; local
791 queue.push_back(PendingAccessRequest(request, callback));
794 if (queue.size() == 1)
850 RequestsQueue& queue(it->second);
851 if (queue.empty())
854 content::MediaResponseCallback callback = queue.front().callback;
855 queue.pop_front();
857 if (!queue.empty()) {
1047 RequestsQueue& queue = rqs_it->second; local
1048 for (RequestsQueue::iterator it = queue
[all...]
/external/chromium_org/chrome/browser/net/
H A Dpredictor_unittest.cc574 Predictor::HostNameQueue queue; local
578 // First check high priority queue FIFO functionality.
579 EXPECT_TRUE(queue.IsEmpty());
580 queue.Push(first, UrlInfo::LEARNED_REFERAL_MOTIVATED);
581 EXPECT_FALSE(queue.IsEmpty());
582 queue.Push(second, UrlInfo::MOUSE_OVER_MOTIVATED);
583 EXPECT_FALSE(queue.IsEmpty());
584 EXPECT_EQ(queue.Pop(), first);
585 EXPECT_FALSE(queue.IsEmpty());
586 EXPECT_EQ(queue
601 Predictor::HostNameQueue queue; local
[all...]
H A Durl_info.cc86 case QUEUED: // In queue.
119 DLogResultsStats("DNS Prefetch in queue");
311 MinMaxAverage queue, when; local
315 queue.sample((it->queue_duration_.InMilliseconds()));
330 queue.minimum(), queue.average(), queue.maximum());
/external/chromium_org/chrome/browser/predictors/
H A Dresource_prefetcher_unittest.cc89 void CheckPrefetcherState(size_t inflight, size_t queue, size_t host) { argument
91 EXPECT_EQ(prefetcher_->request_queue_.size(), queue);
/external/chromium_org/chrome/browser/printing/
H A Dprint_job_manager.cc78 scoped_refptr<PrintQueriesQueue> PrintJobManager::queue() { function in class:printing::PrintJobManager
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
H A Dspoken_list_builder.js38 cvox.SpokenListBuilder.prototype.queue = function(expectedText) {
/external/chromium_org/chrome/browser/ui/app_modal_dialogs/
H A Djavascript_dialog_manager.cc298 AppModalDialogQueue* queue = AppModalDialogQueue::GetInstance(); local
299 AppModalDialog* active_dialog = queue->active_dialog();
302 for (AppModalDialogQueue::iterator i = queue->begin();
303 i != queue->end(); ++i) {
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_tabrestore_browsertest.cc85 content::DOMMessageQueue queue; local
90 AwaitTabsReady(&queue, 2);
133 content::DOMMessageQueue queue; local
136 AwaitTabsReady(&queue, 2);
/external/chromium_org/chrome/browser/ui/website_settings/
H A Dpermission_bubble_manager.cc109 // correct behavior on interstitials -- we probably want to basically queue
388 const std::vector<PermissionBubbleRequest*>& queue,
393 for (iter = queue.begin(); iter != queue.end(); iter++) {
408 const std::vector<PermissionBubbleRequest*>& queue) {
410 for (iter = queue.begin(); iter != queue.end(); iter++) {
386 ExistingRequest( PermissionBubbleRequest* request, const std::vector<PermissionBubbleRequest*>& queue, bool* same_object) argument
407 HasUserGestureRequest( const std::vector<PermissionBubbleRequest*>& queue) argument
/external/chromium_org/components/gcm_driver/
H A Dgcm_stats_recorder_impl_unittest.cc289 const std::deque<CheckinActivity>& queue,
293 EXPECT_EQ(event, queue.front().event) << remark;
294 EXPECT_EQ(details, queue.front().details) << remark;
298 const std::deque<ConnectionActivity>& queue,
302 EXPECT_EQ(event, queue.front().event) << remark;
303 EXPECT_EQ(details, queue.front().details) << remark;
307 const std::deque<RegistrationActivity>& queue,
312 EXPECT_EQ(kAppId, queue.front().app_id) << remark;
313 EXPECT_EQ(sender_ids, queue.front().sender_ids) << remark;
314 EXPECT_EQ(event, queue
288 VerifyCheckin( const std::deque<CheckinActivity>& queue, const std::string& event, const std::string& details, const std::string& remark) argument
297 VerifyConnection( const std::deque<ConnectionActivity>& queue, const std::string& event, const std::string& details, const std::string& remark) argument
306 VerifyRegistration( const std::deque<RegistrationActivity>& queue, const std::string& sender_ids, const std::string& event, const std::string& details, const std::string& remark) argument
318 VerifyReceivingData( const std::deque<ReceivingActivity>& queue, const std::string& event, const std::string& details, const std::string& remark) argument
330 VerifySendingData( const std::deque<SendingActivity>& queue, const std::string& event, const std::string& details, const std::string& remark) argument
[all...]
/external/chromium_org/components/keyed_service/core/
H A Ddependency_graph.cc66 std::deque<DependencyNode*> queue; local
67 std::copy(all_nodes_.begin(), all_nodes_.end(), std::back_inserter(queue));
69 std::deque<DependencyNode*>::iterator queue_end = queue.end();
71 queue_end = std::remove(queue.begin(), queue_end, it->second);
73 queue.erase(queue_end, queue.end());
78 while (!queue.empty()) {
79 DependencyNode* node = queue.front();
80 queue.pop_front();
101 queue
[all...]
/external/chromium_org/components/url_matcher/
H A Dsubstring_set_matcher.cc8 #include <queue>
193 std::queue<uint32> queue; local
202 queue.push(leads_to);
205 while (!queue.empty()) {
206 AhoCorasickNode& current_node = tree_[queue.front()];
207 queue.pop();
212 queue.push(leads_to);
/external/chromium_org/content/browser/appcache/
H A Dappcache_quota_client.cc27 void RunFront(content::AppCacheQuotaClient::RequestQueue* queue) { argument
28 base::Closure request = queue->front();
29 queue->pop_front();
156 // Start the next in the queue.
/external/chromium_org/content/browser/frame_host/
H A Dframe_tree.cc7 #include <queue>
131 std::queue<FrameTreeNode*> queue; local
132 queue.push(root_.get());
134 while (!queue.empty()) {
135 FrameTreeNode* node = queue.front();
136 queue.pop();
141 queue.push(node->child_at(i));
217 // ForEach does not add a node's children to the queue until after visiting
/external/chromium_org/content/browser/renderer_host/input/
H A Dgesture_event_queue_unittest.cc77 queue()->set_debounce_interval_time_ms_for_testing(interval_ms);
84 if (queue()->ShouldForward(gesture_with_latency)) {
125 queue()->ProcessGestureAck(ack, type, ui::LatencyInfo());
159 return queue()->coalesced_gesture_events_.size();
163 return queue()->coalesced_gesture_events_.at(
168 return queue()->coalesced_gesture_events_.back().event;
172 return queue()->debouncing_deferral_queue_.size();
176 return queue()->coalesced_gesture_events_.at(i).event;
180 return queue()->scrolling_in_progress_;
184 return queue()
191 GestureEventQueue* queue() const { function in class:content::GestureEventQueueTest
[all...]
/external/chromium_org/content/child/
H A Dresource_dispatcher.cc727 // we need to work with a stack reference to the deferred queue.
881 void ResourceDispatcher::ReleaseResourcesInMessageQueue(MessageQueue* queue) { argument
882 while (!queue->empty()) {
883 IPC::Message* message = queue->front();
885 queue->pop_front();
/external/chromium_org/extensions/browser/
H A Devent_router.cc639 LazyBackgroundTaskQueue* queue = ExtensionSystem::Get(
641 if (queue->ShouldEnqueueTask(context, extension)) {
655 queue->AddPendingTask(context, extension->id(),
741 LazyBackgroundTaskQueue* queue = ExtensionSystem::Get( local
743 queue->AddPendingTask(browser_context_, extension->id(),
/external/chromium_org/extensions/browser/guest_view/app_view/
H A Dapp_view_guest.cc180 LazyBackgroundTaskQueue* queue = local
182 if (queue->ShouldEnqueueTask(browser_context(), guest_extension)) {
183 queue->AddPendingTask(browser_context(),
/external/chromium_org/media/base/
H A Ddecoder_buffer_queue_unittest.cc36 DecoderBufferQueue queue; local
37 EXPECT_TRUE(queue.IsEmpty());
39 queue.Push(CreateBuffer(0));
40 EXPECT_FALSE(queue.IsEmpty());
44 DecoderBufferQueue queue; local
45 queue.Push(CreateBuffer(0));
46 queue.Push(CreateBuffer(1));
47 EXPECT_FALSE(queue.IsEmpty());
48 EXPECT_EQ(1, queue.Duration().InSeconds());
50 queue
56 DecoderBufferQueue queue; local
85 DecoderBufferQueue queue; local
121 DecoderBufferQueue queue; local
146 DecoderBufferQueue queue; local
[all...]
H A Dstream_parser_unittest.cc39 // |queue|. |decode_timestamps| determines the number of appended buffers and
46 BufferQueue* queue) {
48 DCHECK(queue);
57 queue->push_back(buffer);
43 GenerateBuffers(const int* decode_timestamps, StreamParserBuffer::Type type, TrackId track_id, BufferQueue* queue) argument
/external/chromium_org/media/filters/
H A Dchunk_demuxer.cc27 static TimeDelta EndTimestamp(const StreamParser::BufferQueue& queue) { argument
28 return queue.back()->timestamp() + queue.back()->duration();

Completed in 2950 milliseconds

12345678910