Lines Matching refs:vector

52 #include <vector>
80 using std::vector;
4074 vector<int> container;
4092 Matcher<vector<int> > m = IsEmpty();
4098 Matcher<vector<int> > m = IsEmpty();
4099 vector<int> container;
4106 vector<int> container;
4130 vector<int> container;
4131 Matcher<const vector<int>&> m = SizeIs(1);
4138 Matcher<vector<int> > m = SizeIs(2);
4144 Matcher<vector<int> > m1 = SizeIs(2);
4145 Matcher<vector<int> > m2 = SizeIs(Lt(2u));
4146 Matcher<vector<int> > m3 = SizeIs(AnyOf(0, 3));
4147 Matcher<vector<int> > m4 = SizeIs(GreaterThan(1));
4148 vector<int> container;
4172 vector<size_t>,
4238 // Using just vector here, so order is predicatble.
4242 vector<int> my_set(vals, vals + 6);
4243 vector<int> test_set(test_vals, test_vals + 3);
4244 const Matcher<vector<int> > m = ContainerEq(my_set);
4251 // Using just vector here, so order is predicatble.
4281 vector<int> my_set(vals, vals + 6);
4282 vector<int> test_set(test_vals, test_vals + 5);
4283 const Matcher<vector<int> > m = ContainerEq(my_set);
4365 const vector<int> numbers;
4371 vector<unsigned> numbers;
4403 const Matcher<vector<int> > m = WhenSortedBy(less<int>(), ElementsAre(1, 2));
4426 const vector<int> numbers;
4486 Matcher<const std::vector<int>&> vector_match = ElementsAre(1, 2);
4488 Matcher<const std::vector<int>&> not_vector_match = ElementsAre(2, 1);
4604 Matcher<vector<int> > m = BeginEndDistanceIs(2);
4611 Matcher<vector<int> > m1 = BeginEndDistanceIs(2);
4612 Matcher<vector<int> > m2 = BeginEndDistanceIs(Lt(2));
4613 Matcher<vector<int> > m3 = BeginEndDistanceIs(AnyOf(0, 3));
4614 Matcher<vector<int> > m4 = BeginEndDistanceIs(GreaterThan(1));
4615 vector<int> container;
4652 Matcher<const std::vector<int>&> vector_match = ElementsAre(1, 2, 3, 4, 5);
4671 vector<int> expected;
4707 std::vector<int> s(a, a + GTEST_ARRAY_SIZE_(a));
4718 std::vector<bool> expected(a, a + GTEST_ARRAY_SIZE_(a));
4719 std::vector<bool> actual(b, b + GTEST_ARRAY_SIZE_(b));
4732 ::std::vector<int> expected;
4795 typedef std::vector<int> IntVec;
4808 std::vector<int> s(a, a + GTEST_ARRAY_SIZE_(a));
4818 std::vector<int> s(a, a + GTEST_ARRAY_SIZE_(a));
4819 std::vector<Matcher<int> > mv;
4847 std::vector<int> s;
4848 std::vector<Matcher<int> > mv;
4863 std::vector<int> s;
4864 std::vector<Matcher<int> > mv;
4879 std::vector<int> v;
4888 std::vector<int> v;
4896 std::vector<int> v;
4909 std::vector<int> v;
4922 std::vector<int> v;
4949 std::vector<string> v;
5076 std::vector<size_t> lhs_used_;
5077 std::vector<size_t> rhs_used_;
5112 std::vector<bool> seen_element(graph.LhsSize());
5113 std::vector<bool> seen_matcher(graph.RhsSize());
5234 EXPECT_FALSE(IsReadableTypeName("std::vector<int, std::alloc_traits<int> >"));
5351 Matcher<vector<int> > m = Each(1);
5354 Matcher<vector<int> > m2 = Not(m);
5359 vector<int> some_vector;
5369 vector<string> another_vector;
5438 vector<int> rhs;
5442 const Matcher<const vector<int>&> m = Pointwise(IsHalfOf(), rhs);
5468 vector<int> rhs;
5478 vector<int> lhs;
5489 const vector<int> lhs{2, 4, 6};
5538 vector<int> rhs;
5542 const Matcher<const vector<int>&> m = UnorderedPointwise(IsHalfOf(), rhs);
5579 vector<int> rhs;
5589 vector<int> lhs;
5600 const vector<int> lhs{2, 4, 6};