HomeSort by: relevance | last modified time | path
    Searched defs:SetVector (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
SetVector.h 1 //===- llvm/ADT/SetVector.h - Set with insert order iteration ---*- C++ -*-===//
14 // This file defines SetVector and SmallSetVector, which performs no allocations
15 // if the SetVector has less than a certain number of elements.
40 class SetVector {
54 /// Construct an empty SetVector
55 SetVector() = default;
57 /// Initialize a SetVector with a range of elements
59 SetVector(It Start, It End) {
65 /// Clear the SetVector and return the underlying vector.
71 /// Determine if the SetVector is empty or not
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachinePipeliner.h 136 SetVector<SUnit *> NodeOrder;
156 SetVector<SUnit *> Stack;
293 SetVector<SUnit *> &NodesAdded);
312 SetVector<SUnit *> Nodes;
322 using iterator = SetVector<SUnit *>::const_iterator;
397 operator SetVector<SUnit *> &() { return Nodes; }

Completed in 16 milliseconds