Searched refs:QueueItem (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DQueueItem.cpp1 //===-- QueueItem.cpp -------------------------------------------*- C++ -*-===//
11 #include "lldb/Target/QueueItem.h"
17 QueueItem::QueueItem(QueueSP queue_sp, ProcessSP process_sp, function in class:QueueItem
30 QueueItem::~QueueItem() {}
32 QueueItemKind QueueItem::GetKind() {
37 void QueueItem::SetKind(QueueItemKind item_kind) { m_kind = item_kind; }
39 Address &QueueItem::GetAddress() { return m_address; }
41 void QueueItem
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DWorkList.cpp206 using QueueItem = std::pair<WorkListUnit, QueuePriority>;
209 bool operator() (const QueueItem &LHS, const QueueItem &RHS) {
222 llvm::PriorityQueue<QueueItem, std::vector<QueueItem>, ExplorationComparator>
244 QueueItem U = queue.top();
268 using QueueItem = std::pair<WorkListUnit, QueuePriority>;
271 bool operator() (const QueueItem &LHS, const QueueItem &RHS) {
284 llvm::PriorityQueue<QueueItem, st
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DQueueItem.h1 //===-- QueueItem.h ---------------------------------------------*- C++ -*-===//
25 // QueueItem:
32 class QueueItem : public std::enable_shared_from_this<QueueItem> { class in namespace:lldb_private
34 QueueItem(lldb::QueueSP queue_sp, lldb::ProcessSP process_sp,
37 ~QueueItem();
42 /// The type of work item that this QueueItem object
71 /// Check if this QueueItem object is valid
150 // to get the QueueItem that enqueued this item
162 DISALLOW_COPY_AND_ASSIGN(QueueItem);
[all...]
H A DSystemRuntime.h16 #include "lldb/Target/QueueItem.h"
137 /// Get the extended backtrace thread for a QueueItem
139 /// A QueueItem represents a function/block that will be executed on
147 /// The QueueItem that we are getting an extended backtrace for.
253 /// Complete the fields in a QueueItem
255 /// PopulatePendingItemsForQueue() may not fill in all of the QueueItem
260 /// The QueueItem that we will be completing.
264 /// information about the QueueItem.
265 virtual void CompleteQueueItem(lldb_private::QueueItem *queue_item,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp939 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
942 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
943 std::greater<QueueItem>>
965 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
1033 Queue->push(QueueItem(OrderedPenalty(Penalty, *Count), Node));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h231 class QueueItem;
398 typedef std::shared_ptr<lldb_private::QueueItem> QueueItemSP;
/freebsd-11-stable/lib/clang/liblldb/
H A DMakefile560 SRCS+= Target/QueueItem.cpp

Completed in 139 milliseconds