Searched defs:queue (Results 1 - 25 of 247) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDoubleBufferedDequeTest.cpp16 DoubleBufferedDeque<int> queue; local
18 EXPECT_TRUE(queue.isEmpty());
19 queue.append(1);
20 EXPECT_FALSE(queue.isEmpty());
25 DoubleBufferedDeque<int> queue; local
26 queue.append(1);
28 queue.swapBuffers();
29 EXPECT_TRUE(queue.isEmpty());
34 DoubleBufferedDeque<int> queue; local
35 queue
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dsocketserver.h28 // called to allow the socket server to use the thread's message queue for
30 virtual void SetMessageQueue(MessageQueue* queue) {} argument
H A Datomicops_unittest.cc30 rtc::FixedSizeLockFreeQueue<int> queue; local
31 EXPECT_EQ(0u, queue.capacity());
32 EXPECT_EQ(0u, queue.Size());
33 EXPECT_FALSE(queue.PushBack(1));
35 EXPECT_FALSE(queue.PopFront(&val));
39 rtc::FixedSizeLockFreeQueue<int> queue(5);
40 EXPECT_EQ(5u, queue.capacity());
41 EXPECT_EQ(0u, queue.Size());
43 EXPECT_FALSE(queue.PopFront(&val));
47 rtc::FixedSizeLockFreeQueue<int> queue(
[all...]
/external/chromium_org/v8/src/libplatform/
H A Dworker-thread.cc8 #include "src/libplatform/task-queue.h"
13 WorkerThread::WorkerThread(TaskQueue* queue) argument
14 : Thread(Options("V8 WorkerThread")), queue_(queue) {
H A Dtask-queue-unittest.cc7 #include "src/libplatform/task-queue.h"
26 explicit TaskQueueThread(TaskQueue* queue) argument
27 : Thread(Options("libplatform TaskQueueThread")), queue_(queue) {}
39 TaskQueue queue; local
41 queue.Append(&task);
42 EXPECT_EQ(&task, queue.GetNext());
43 queue.Terminate();
44 EXPECT_THAT(queue.GetNext(), IsNull());
49 TaskQueue queue; local
50 TaskQueueThread thread1(&queue);
[all...]
H A Dworker-thread-unittest.cc6 #include "src/libplatform/task-queue.h"
31 TaskQueue queue; local
37 queue.Append(task);
40 WorkerThread thread1(&queue);
41 WorkerThread thread2(&queue);
44 queue.Terminate();
/external/guava/guava/src/com/google/common/base/
H A DFinalizablePhantomReference.java38 * @param queue that should finalize the referent
40 protected FinalizablePhantomReference(T referent, FinalizableReferenceQueue queue) { argument
41 super(referent, queue.queue);
42 queue.cleanUp();
H A DFinalizableSoftReference.java36 * @param queue that should finalize the referent
38 protected FinalizableSoftReference(T referent, FinalizableReferenceQueue queue) { argument
39 super(referent, queue.queue);
40 queue.cleanUp();
H A DFinalizableWeakReference.java36 * @param queue that should finalize the referent
38 protected FinalizableWeakReference(T referent, FinalizableReferenceQueue queue) { argument
39 super(referent, queue.queue);
40 queue.cleanUp();
/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/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...]
/external/chromium_org/sandbox/mac/
H A Ddispatch_source_mach.cc17 // Since the queue was created above in the delegated constructor, and it was
22 DispatchSourceMach::DispatchSourceMach(dispatch_queue_t queue, argument
25 : queue_(queue),
29 dispatch_retain(queue);
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DBasicPoolEntry.java65 * @param queue the reference queue for tracking GC of this entry,
70 ReferenceQueue<Object> queue) {
75 this.reference = new BasicPoolEntryRef(this, queue);
68 BasicPoolEntry(ClientConnectionOperator op, HttpRoute route, ReferenceQueue<Object> queue) argument
H A DBasicPoolEntryRef.java61 * @param queue the reference queue, or <code>null</code>
64 ReferenceQueue<Object> queue) {
65 super(entry, queue);
63 BasicPoolEntryRef(BasicPoolEntry entry, ReferenceQueue<Object> queue) argument
H A DRefQueueWorker.java59 /** The reference queue to monitor. */
76 * @param queue the queue on which to wait for references
79 public RefQueueWorker(ReferenceQueue<?> queue, RefQueueHandler handler) { argument
80 if (queue == null) {
87 refQueue = queue;
/external/chromium_org/base/
H A Dpending_task.cc37 // Since the top of a priority queue is defined as the "greatest" element, we
52 void TaskQueue::Swap(TaskQueue* queue) { argument
53 c.swap(queue->c); // Calls std::deque::swap.
/external/chromium_org/cc/layers/
H A Dcontents_scaling_layer.cc35 bool ContentsScalingLayer::Update(ResourceUpdateQueue* queue, argument
37 bool updated = Layer::Update(queue, occlusion);
H A Dnine_patch_layer_unittest.cc59 ResourceUpdateQueue queue; local
63 test_layer->Update(&queue, &occlusion_tracker);
75 test_layer->Update(&queue, &occlusion_tracker);
H A Dui_resource_layer_unittest.cc60 ResourceUpdateQueue queue; local
64 test_layer->Update(&queue, &occlusion_tracker);
73 test_layer->Update(&queue, &occlusion_tracker);
88 ResourceUpdateQueue queue; local
92 test_layer->Update(&queue, &occlusion_tracker);
100 test_layer->Update(&queue, &occlusion_tracker);
H A Dvideo_layer.cc31 bool VideoLayer::Update(ResourceUpdateQueue* queue, argument
33 bool updated = Layer::Update(queue, occlusion);
/external/chromium_org/cc/test/
H A Dfake_layer_tree_host.h44 void UpdateLayers(ResourceUpdateQueue* queue) { argument
45 LayerTreeHost::UpdateLayers(queue);
H A Dfake_painted_scrollbar_layer.cc38 ResourceUpdateQueue* queue,
40 bool updated = PaintedScrollbarLayer::Update(queue, occlusion);
37 Update( ResourceUpdateQueue* queue, const OcclusionTracker<Layer>* occlusion) argument
H A Dfake_picture_layer.cc28 bool FakePictureLayer::Update(ResourceUpdateQueue* queue, argument
30 bool updated = PictureLayer::Update(queue, occlusion);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
H A Dspoken_list_builder.js38 cvox.SpokenListBuilder.prototype.queue = function(expectedText) {
/external/chromium_org/net/socket/
H A Dwebsocket_endpoint_lock_manager.h72 // copied after |queue| has been assigned to.
81 scoped_ptr<WaiterQueue> queue; member in struct:net::WebSocketEndpointLockManager::LockInfo
104 // endpoint is locked. If LockInfo.queue is non-empty, then one or more

Completed in 1314 milliseconds

12345678910