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

  /external/llvm/include/llvm/ADT/
SetVector.h 1 //===- 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.
38 class SetVector {
52 /// \brief Construct an empty SetVector
53 SetVector() {}
55 /// \brief Initialize a SetVector with a range of elements
57 SetVector(It Start, It End) {
63 /// \brief Determine if the SetVector is empty or not.
68 /// \brief Determine the number of elements in the SetVector
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 83 protected void SetVector(NodeVector v)
181 SetVector((NodeVector) nodeVector);
459 SetVector(new NodeVector());
465 SetVector(null);
562 newCache.setVector(nv);
783 // A copy of the code of what SetVector() would do.
786 m_cache.setVector(v);
789 m_cache.setVector(v);
911 private void setVector(NodeVector nv) {
  /external/clang/test/SemaCXX/
typo-correction.cpp 502 class SetVector {
504 SetVector() {}
508 class SmallSetVector : public SetVector<C, I, 8> {};

Completed in 929 milliseconds