Home
last modified time | relevance | path

Searched refs:PriorityQueue (Results 1 – 25 of 31) sorted by relevance

12

/third_party/boost/libs/heap/examples/
Dinterface.cpp20 template <typename PriorityQueue>
23 PriorityQueue pq; in basic_interface()
42 template <typename PriorityQueue>
45 PriorityQueue pq; in iterator_interface()
51 typename PriorityQueue::iterator begin = pq.begin(); in iterator_interface()
52 typename PriorityQueue::iterator end = pq.end(); in iterator_interface()
55 for (typename PriorityQueue::iterator it = begin; it != end; ++it) in iterator_interface()
63 template <typename PriorityQueue>
66 PriorityQueue pq; in ordered_iterator_interface()
72 typename PriorityQueue::ordered_iterator begin = pq.ordered_begin(); in ordered_iterator_interface()
[all …]
/third_party/boost/boost/geometry/algorithms/detail/
Dsweep.hpp41 typename PriorityQueue,
46 inline void sweep(Range const& range, PriorityQueue& queue, in sweep()
51 typedef typename PriorityQueue::value_type event_type; in sweep()
72 typename PriorityQueue,
76 inline void sweep(Range const& range, PriorityQueue& queue, in sweep()
Dmax_interval_gap.hpp100 template <typename Range, typename PriorityQueue, typename EventVisitor>
102 PriorityQueue& queue, in apply()
109 PriorityQueue pq(boost::begin(range), boost::end(range)); in apply()
137 template <typename PriorityQueue>
138 inline void apply(Event const& event, PriorityQueue& queue) in apply()
/third_party/node/test/parallel/
Dtest-priority-queue.js7 const PriorityQueue = require('internal/priority_queue'); constant
11 const queue = new PriorityQueue();
35 const queue = new PriorityQueue();
48 const queue = new PriorityQueue((a, b) => b - a);
64 const queue = new PriorityQueue((a, b) => {
79 const queue = new PriorityQueue((a, b) => {
117 const queue = new PriorityQueue((a, b) => {
/third_party/boost/boost/heap/
Dheap_concepts.hpp19 struct PriorityQueue: struct
30 BOOST_CONCEPT_USAGE(PriorityQueue) in BOOST_CONCEPT_USAGE() argument
43 typename PriorityQueue::value_type v; in BOOST_CONCEPT_USAGE()
67 PriorityQueue<C>
79 PriorityQueue<C>
Dheap_merge.hpp113 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<Heap1>)); in heap_merge()
114 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<Heap2>)); in heap_merge()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DPriorityQueue.h27 class PriorityQueue : public std::priority_queue<T, Sequence, Compare> {
29 explicit PriorityQueue(const Compare &compare = Compare(),
35 PriorityQueue(Iterator begin, Iterator end,
/third_party/node/benchmark/util/
Dpriority-queue.js10 const PriorityQueue = require('internal/priority_queue');
11 const queue = new PriorityQueue();
/third_party/boost/boost/heap/detail/
Dheap_comparison.hpp58 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<Heap1>)); in operator ()()
59 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<Heap2>)); in operator ()()
99 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<Heap1>)); in operator ()()
100 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<Heap2>)); in operator ()()
/third_party/boost/libs/heap/test/
Dpriority_queue_test.cpp24 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<pri_queue>)); in run_common_priority_queue_tests()
Dd_ary_heap_test.cpp34 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<pri_queue>)); in run_d_ary_heap_test()
Dskew_heap_test.cpp31 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<pri_queue>)); in run_skew_heap_test()
Dcommon_heap_tests.hpp415 BOOST_CONCEPT_ASSERT((boost::heap::PriorityQueue<pri_queue>)); in run_concept_check()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyCFGSort.cpp266 PriorityQueue<MachineBasicBlock *, std::vector<MachineBasicBlock *>, in sortBlocks()
269 PriorityQueue<MachineBasicBlock *, std::vector<MachineBasicBlock *>, in sortBlocks()
/third_party/node/lib/internal/
Dpriority_queue.js19 module.exports = class PriorityQueue { class
Dtimers.js118 const PriorityQueue = require('internal/priority_queue'); constant
146 const timerListQueue = new PriorityQueue(compareTimersLists, setPosition);
/third_party/python/Lib/asyncio/
Dqueues.py219 class PriorityQueue(Queue): class
/third_party/python/Lib/
Dqueue.py223 class PriorityQueue(Queue): class
/third_party/python/Lib/test/
Dtest_queue.py106 PriorityQueue = [111, 222, 333])
276 self.type2test = self.queue.PriorityQueue
/third_party/python/Doc/library/
Dasyncio-api-index.rst90 * - :class:`PriorityQueue`
Dqueue.rst52 .. class:: PriorityQueue(maxsize=0)
101 Queue objects (:class:`Queue`, :class:`LifoQueue`, or :class:`PriorityQueue`)
Dasyncio-queue.rst119 .. class:: PriorityQueue
/third_party/python/Lib/test/test_asyncio/
Dtest_queues.py593 q = asyncio.PriorityQueue()
673 q_class = asyncio.PriorityQueue
/third_party/python/Misc/NEWS.d/
D3.5.0b1.rst616 Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't increment
/third_party/flutter/flutter/packages/flutter/lib/src/scheduler/
Dbinding.dart10 import 'package:collection/collection.dart' show PriorityQueue, HeapPriorityQueue;
311 …final PriorityQueue<_TaskEntry<dynamic>> _taskQueue = HeapPriorityQueue<_TaskEntry<dynamic>>(_task…

12