HomeSort by relevance Sort by last modified time
    Searched defs:PriorityWorklist (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
PriorityWorklist.h 1 //===- PriorityWorklist.h - Worklist with insertion priority ----*- C++ -*-===//
57 class PriorityWorklist {
65 /// Construct an empty PriorityWorklist
66 PriorityWorklist() = default;
68 /// Determine if the PriorityWorklist is empty or not.
78 /// Count the number of elements of a given key in the PriorityWorklist.
79 /// \returns 0 if the element is not in the PriorityWorklist, 1 if it is.
84 /// Return the last element of the PriorityWorklist.
86 assert(!empty() && "Cannot call back() on empty PriorityWorklist!");
90 /// Insert a new element into the PriorityWorklist
    [all...]
  /external/llvm/include/llvm/ADT/
PriorityWorklist.h 1 //===- PriorityWorklist.h - Worklist with insertion priority ----*- C++ -*-===//
53 class PriorityWorklist {
61 /// Construct an empty PriorityWorklist
62 PriorityWorklist() {}
64 /// Determine if the PriorityWorklist is empty or not.
74 /// Count the number of elements of a given key in the PriorityWorklist.
75 /// \returns 0 if the element is not in the PriorityWorklist, 1 if it is.
80 /// Return the last element of the PriorityWorklist.
82 assert(!empty() && "Cannot call back() on empty PriorityWorklist!");
86 /// Insert a new element into the PriorityWorklist
    [all...]

Completed in 1211 milliseconds