Lines Matching refs:vector

42 #include <vector>
55 using std::vector;
289 Matcher<const vector<int>&> m = ElementsAre();
294 Matcher<vector<int> > m = ElementsAre(Gt(5));
306 Matcher<vector<int> > m = ElementsAre();
333 Matcher<const vector<int>& > m =
337 vector<int> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
355 Matcher<const vector<int>& > m = ElementsAre(1, GreaterThan(5));
357 vector<int> v;
368 vector<string> test_vector;
382 vector<string> test_vector;
391 vector<int> test_vector;
398 vector<int> test_vector;
405 vector<int> test_vector;
412 vector<int> test_vector;
422 vector<int> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
431 vector<string> test_vector;
435 Matcher<vector<string> > m = ElementsAre(StrEq("test string"));
440 vector<string> test_vector;
443 Matcher<vector<string> > m = ElementsAre(StrEq("test string"));
448 vector<string> test_vector;
453 Matcher<vector<string> > m = ElementsAre(
464 vector<list<char> > nested;
477 vector<int> v(a, a + GTEST_ARRAY_SIZE_(a));
485 vector<int> v(a, a + GTEST_ARRAY_SIZE_(a));
582 vector<int> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
592 vector<string> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
603 vector<string> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
614 vector<string> test_vector;
626 vector<int> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
627 const vector<int> expected(a, a + GTEST_ARRAY_SIZE_(a));
674 vector<int> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
675 const vector<Matcher<int> > expected(
684 const vector<int> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
685 const vector<int> expected(a, a + GTEST_ARRAY_SIZE_(a));
692 EXPECT_THAT((vector<int>()), ElementsAreArray(null_int, null_int));
708 vector<int> test_vector(a, a + GTEST_ARRAY_SIZE_(a));
709 vector<int> expect(a, a + GTEST_ARRAY_SIZE_(a));
715 typedef vector<int>::iterator Iter;
1179 Matcher<vector<int> > m = Contains(1);
1182 Matcher<vector<int> > m2 = Not(m);