Lines Matching refs:std

50 using std::list;
51 using std::map;
52 using std::pair;
53 using std::set;
54 using std::stringstream;
55 using std::vector;
229 virtual void DescribeTo(::std::ostream* os) const {}
260 virtual void DescribeTo(::std::ostream* os) const {
698 ::std::string a[] = { "hi", "ho" };
699 ::std::string b[] = { "hi", "ho" };
797 StaticAssertTypeEq< ::std::string, arg_type>();
802 StaticAssertTypeEq<const ::std::string&, arg_type>();
807 const Matcher< ::std::string> m1 = IsEmptyString();
810 const Matcher<const ::std::string&> m2 = IsEmptyStringByRef();
988 EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f'));
990 EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f', 'g'));
992 EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f', 'g',
995 EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f', 'g',
998 EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f', 'g',
999 "h", 'i', ::std::string("j")));
1008 Not(EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f')));
1010 Not(EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f',
1013 Not(EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f', 'g',
1016 Not(EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f', 'g',
1019 Not(EqualsSumOf(::std::string("a"), 'b', 'c', "d", "e", 'f', 'g',
1020 "h", 'i', ::std::string("j"))));
1027 EXPECT_THAT("abcd", EqualsSumOf(::std::string("a"), "b", 'c', "d"));
1030 EXPECT_THAT("abcde", Not(EqualsSumOf(::std::string("a"), "b", 'c', "d")));
1037 std::string prefix_str(prefix);
1043 Matcher<std::string> no_promo =
1044 EqConcat(std::string("foo"), 't');
1045 Matcher<const std::string&> promo =