Home | History | Annotate | Download | only in ADT

Lines Matching refs:SmallVector

10 // SmallVector unit tests.
15 #include "llvm/ADT/SmallVector.h"
153 SmallVector<NonCopyable, 0> V;
204 typedef ::testing::Types<SmallVector<Constructable, 0>,
205 SmallVector<Constructable, 1>,
206 SmallVector<Constructable, 2>,
207 SmallVector<Constructable, 4>,
208 SmallVector<Constructable, 5>
682 static unsigned NumBuiltinElts(const SmallVector<T, N>&) { return N; }
687 std::pair<SmallVector<Constructable, 4>, SmallVector<Constructable, 4>>,
689 std::pair<SmallVector<Constructable, 4>, SmallVector<Constructable, 2>>,
691 std::pair<SmallVector<Constructable, 2>, SmallVector<Constructable, 4>>,
693 std::pair<SmallVector<Constructable, 2>, SmallVector<Constructable, 2>>
741 SmallVector<notassignable, 2> vec;
762 SmallVector<MovedFrom, 3> v;
838 SmallVector<Emplaceable, 3> V;
848 SmallVector<Emplaceable, 3> V;
858 SmallVector<Emplaceable, 3> V;
868 SmallVector<Emplaceable, 3> V;
878 SmallVector<Emplaceable, 3> V;
888 SmallVector<Emplaceable, 3> V;
898 SmallVector<int, 1> V;
908 SmallVector<int, 2> V1 = {};
915 SmallVector<int, 2> V2 = {1, 2, 3, 4};