Searched refs:queue (Results 51 - 75 of 404) sorted by relevance

1234567891011>>

/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java52 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue
54 assertEquals(11, queue.capacity());
55 checkUnbounded(queue);
56 checkNatural(queue);
60 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue
63 assertEquals(11, queue.capacity());
64 checkUnbounded(queue);
65 assertSame(SOME_COMPARATOR, queue.comparator());
69 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue
72 assertEquals(8, queue
175 checkNatural(MinMaxPriorityQueue<Integer> queue) argument
179 checkUnbounded(MinMaxPriorityQueue<Integer> queue) argument
[all...]
/external/libppp/src/
H A Dlink.c97 struct mqueue *queue, *highest; local
102 for (queue = l->Queue; queue < highest; queue++)
103 while (queue->len)
104 m_enqueue(highest, m_dequeue(queue));
110 struct mqueue *queue, *highest; local
113 for (queue = l->Queue; queue <= highest; queue
153 struct mqueue *queue, *highest; local
[all...]
/external/qemu/telephony/
H A Dsysdeps_posix.c41 sys_queue_reset( SysQueue queue )
43 queue->start = queue->end = 0;
47 sys_queue_add( SysQueue queue, void* item ) argument
49 assert( queue->end - queue->start < SYS_MAX_QUEUE );
50 assert( queue->start == 0 );
52 queue->pending[ queue->end++ ] = item;
57 sys_queue_remove( SysQueue queue, voi
[all...]
/external/openfst/src/include/fst/script/
H A Drmepsilon.h28 #include <fst/queue.h>
76 AutoQueue<StateId> queue(*fst, distance, EpsilonArcFilter<Arc>());
78 &queue, opts.delta, opts.connect, weight_thresh,
84 FifoQueue<StateId> queue; local
86 &queue, opts.delta, opts.connect, weight_thresh,
92 LifoQueue<StateId> queue; local
94 &queue, opts.delta, opts.connect, weight_thresh,
100 NaturalShortestFirstQueue<StateId, Weight> queue(*distance);
103 &queue, opts.delta, opts.connect, weight_thresh,
109 StateOrderQueue<StateId> queue; local
[all...]
H A Dshortest-distance.h27 #include <fst/queue.h> // for QueueType
110 Queue *queue = local
114 queue, AnyArcFilter<Arc>(), opts.source, opts.delta);
116 delete queue;
120 Queue *queue = local
125 queue, EpsilonArcFilter<Arc>(), opts.source, opts.delta);
127 delete queue;
131 Queue *queue = local
136 queue, InputEpsilonArcFilter<Arc>(), opts.source, opts.delta);
138 delete queue;
142 Queue *queue = local
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DBasicPoolEntry.java60 * @param queue the reference queue for tracking GC of this entry,
65 ReferenceQueue<Object> queue) {
70 this.reference = new BasicPoolEntryRef(this, queue);
63 BasicPoolEntry(ClientConnectionOperator op, HttpRoute route, ReferenceQueue<Object> queue) argument
H A DRefQueueWorker.java54 /** The reference queue to monitor. */
71 * @param queue the queue on which to wait for references
74 public RefQueueWorker(ReferenceQueue<?> queue, RefQueueHandler handler) { argument
75 if (queue == null) {
82 refQueue = queue;
/external/chromium/chrome/browser/net/
H A Dsdch_dictionary_fetcher.h13 #include <queue>
39 // This leaves the URL in a queue, which is de-duped, so that there is less
60 // A queue of URLs that are being used to download dictionaries.
61 std::queue<GURL> fetch_queue_;
/external/stlport/test/unit/
H A Dqueue_test.cpp5 #include <queue>
51 queue<int, list<int> > q;
/external/jmonkeyengine/engine/src/core/com/jme3/post/
H A DSceneProcessor.java37 import com.jme3.renderer.queue.RenderQueue;
78 * @param rq The render queue
83 * Called after a frame has been rendered and the queue flushed.
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/
H A DGuiComparator.java33 package com.jme3.renderer.queue;
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
H A DGStreamerGWorld.cpp85 GstElement* queue = gst_element_factory_make("queue", "queue"); local
96 // Add and link a queue, ffmpegcolorspace, videoscale and sink in the bin.
97 gst_bin_add_many(GST_BIN(videoSink.get()), platformVideoSink, videoScale, colorspace, queue, NULL); local
100 gst_element_link_pads_full(queue, "src", colorspace, "sink", GST_PAD_LINK_CHECK_NOTHING);
104 gst_element_link_many(queue, colorspace, videoScale, platformVideoSink, NULL);
107 // Link a new src pad from tee to queue.
109 GstPad* sinkPad = gst_element_get_static_pad(queue, "sink");
116 gst_element_sync_state_with_parent(queue);
169 GstElement* queue = gst_bin_get_by_name(GST_BIN(videoSink.get()), "queue"); local
189 gst_bin_remove_many(GST_BIN(videoSink.get()), queue, colorspace, videoScale, platformVideoSink, NULL); local
[all...]
/external/webkit/Tools/QueueStatusServer/handlers/
H A Dupdateworkitems.py50 queue = Queue.queue_with_name(queue_name)
51 if not queue:
56 work_items = queue.work_items()
/external/webkit/Tools/QueueStatusServer/model/
H A Dqueues.py40 "commit-queue",
41 "style-queue",
67 return [queue for queue in cls.all() if queue.is_ews()]
87 short_name = short_name.replace("-queue", "")
106 # Note: The style-queue is just like an EWS in that it has an EWS
108 # point code wants to not treat the style-queue as an EWS
111 return self._name.endswith("-ews") or self._name == "style-queue"
/external/guava/guava/src/com/google/common/base/internal/
H A DFinalizer.java84 return finalizer.queue;
89 private final ReferenceQueue<Object> queue = new ReferenceQueue<Object>(); field in class:Finalizer
102 this.frqReference = new PhantomReference<Object>(frq, queue);
119 * Loops continuously, pulling references off the queue and cleaning them up.
127 cleanUp(queue.remove());
163 } while ((reference = queue.poll()) != null);
/external/guava/guava/src/com/google/common/base/
H A DFinalizableReferenceQueue.java30 * A reference queue with an associated background thread that dequeues references and invokes
57 * thread keeps an indirect strong reference to the queue in ReferenceMap, which keeps the
90 * The actual reference queue that our background thread will poll.
92 final ReferenceQueue<Object> queue; field in class:FinalizableReferenceQueue
100 * Constructs a new queue.
105 ReferenceQueue<Object> queue;
108 queue = (ReferenceQueue<Object>)
116 queue = new ReferenceQueue<Object>();
119 this.queue = queue;
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMinMaxPriorityQueue.java42 * A double-ended priority queue, which provides constant-time access to both
43 * its least element and its greatest element, as determined by the queue's
50 * the queue according to the queue's comparator. But unlike a regular priority
51 * queue, the methods {@link #peekLast}, {@link #pollLast} and
53 * in the queue instead.
55 * <p>A min-max priority queue can be configured with a maximum size. If so,
56 * each time the size of the queue exceeds that value, the queue automatically
79 * <li>If you only access one end of the queue, an
222 private Object[] queue; field in class:MinMaxPriorityQueue
[all...]
/external/dhcpcd/
H A Deloop.c54 int queue; member in struct:timeout
113 add_q_timeout_tv(int queue, argument
152 t->queue = queue;
174 add_q_timeout_sec(int queue, time_t when, void (*callback)(void *), void *arg) argument
180 add_q_timeout_tv(queue, &tv, callback, arg);
187 v_delete_q_timeouts(int queue, void *arg, void (*callback)(void *), va_list v) argument
194 if (t->queue == queue && t->arg == arg &&
217 delete_q_timeouts(int queue, voi argument
227 delete_q_timeout(int queue, void (*callback)(void *), void *arg) argument
[all...]
/external/stlport/stlport/stl/
H A D_queue.h59 class queue class in inherits:__stlport_class
62 : public __stlport_class<queue<_Tp> >
64 : public __stlport_class<queue<_Tp, _Sequence> >
70 typedef queue<_Tp> _Self;
72 typedef queue<_Tp, _Sequence> _Self;
86 queue() : c() {} function in class:queue
87 explicit queue(const _Sequence& __c) : c(__c) {} function in class:queue
90 queue(__move_source<_Self> src) function in class:queue
122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARG
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java125 private ReferenceQueue queue = new ReferenceQueue(); field in class:WeakHashtable
241 Referenced keyRef = new Referenced(key, queue);
321 synchronized (queue) {
323 while ((key = (WeakKey) queue.poll()) != null) {
335 synchronized (queue) {
336 WeakKey key = (WeakKey) queue.poll();
410 private Referenced(Object key, ReferenceQueue queue) { argument
411 reference = new WeakKey(key, queue, this);
468 ReferenceQueue queue,
470 super(key, queue);
467 WeakKey(Object key, ReferenceQueue queue, Referenced referenced) argument
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_mock.py87 queue.
90 def __init__(self, conn, queue):
92 self._queue = queue
103 queue = Queue.Queue()
104 reader = LineReader(conn, queue)
105 self.failUnless(queue.empty())
107 read = queue.get()
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DViewPort.java37 import com.jme3.renderer.queue.RenderQueue;
70 protected final RenderQueue queue = new RenderQueue(); field in class:ViewPort
272 return queue;
/external/chromium/chrome/browser/chromeos/login/
H A Dwizard_accessibility_helper.h33 // Speak the given text if the accessibility pref is already set. |queue|
38 void MaybeSpeak(const char* str, bool queue, bool interruptible);
/external/ipsec-tools/src/racoon/
H A Dgenlist.h38 #include <sys/queue.h>
/external/chromium/net/url_request/
H A Durl_request_throttler_entry.h9 #include <queue>
145 std::queue<base::TimeTicks> send_log_;

Completed in 5055 milliseconds

1234567891011>>