Searched defs:SetVector (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DSetVector.h1 //===- llvm/ADT/SetVector.h - Set with insert order iteration ---*- C++ -*-===//
15 // This file defines SetVector and SmallSetVector, which performs no allocations
16 // if the SetVector has less than a certain number of elements.
39 class SetVector { class in namespace:llvm
53 /// \brief Construct an empty SetVector
54 SetVector() {} function in class:llvm::SetVector
56 /// \brief Initialize a SetVector with a range of elements
58 SetVector(It Start, It End) { function in class:llvm::SetVector
64 /// \brief Determine if the SetVector is empty or not.
69 /// \brief Determine the number of elements in the SetVector
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DSetVector.h1 //===- llvm/ADT/SetVector.h - Set with insert order iteration ---*- C++ -*-===//
15 // This file defines SetVector and SmallSetVector, which performs no allocations
16 // if the SetVector has less than a certain number of elements.
36 class SetVector { class in namespace:llvm
48 /// @brief Construct an empty SetVector
49 SetVector() {} function in class:llvm::SetVector
51 /// @brief Initialize a SetVector with a range of elements
53 SetVector(It Start, It End) { function in class:llvm::SetVector
57 /// @brief Determine if the SetVector is empty or not.
62 /// @brief Determine the number of elements in the SetVector
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DNodeSequence.java83 protected void SetVector(NodeVector v) method in class:NodeSequence
181 SetVector((NodeVector) nodeVector);
459 SetVector(new NodeVector());
465 SetVector(null);
783 // A copy of the code of what SetVector() would do.
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp509 class SetVector { class in namespace:PR18685
511 SetVector() {} function in class:PR18685::SetVector
515 class SmallSetVector : public SetVector<C, I, 8> {};
/external/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp64 #include "llvm/ADT/SetVector.h"
220 SetVector<SUnit *> NodeOrder;
237 SetVector<SUnit *> Stack;
363 SetVector<SUnit *> &NodesAdded);
421 SetVector<SUnit *> Nodes;
430 typedef SetVector<SUnit *>::const_iterator iterator;
484 operator SetVector<SUnit *> &() { return Nodes; }
1593 static bool pred_L(SetVector<SUnit *> &NodeOrder,
1597 for (SetVector<SUnit *>::iterator I = NodeOrder.begin(), E = NodeOrder.end();
1626 static bool succ_L(SetVector<SUni
[all...]

Completed in 194 milliseconds