Lines Matching refs:StartsWith
115 using testing::StartsWith;
1034 StartsWith("which is located @")); in TEST()
1038 StartsWith("which is located @")); in TEST()
1335 const Matcher<const char*> m1 = StartsWith(string("")); in TEST()
1340 const Matcher<const string&> m2 = StartsWith("Hi"); in TEST()
1349 Matcher<const std::string> m = StartsWith("Hi"); in TEST()
1569 const Matcher<const wchar_t*> m1 = StartsWith(::std::wstring(L"")); in TEST()
1574 const Matcher<const ::std::wstring&> m2 = StartsWith(L"Hi"); in TEST()
1583 Matcher<const ::std::wstring> m = StartsWith(L"Hi"); in TEST()
1760 const Matcher<const wchar_t*> m1 = StartsWith(::wstring(L"")); in TEST()
1765 const Matcher<const ::wstring&> m2 = StartsWith(L"Hi"); in TEST()
1774 Matcher<const ::wstring> m = StartsWith(L"Hi"); in TEST()
2373 EXPECT_TRUE(Value("hi", StartsWith("h"))); in TEST()
2458 EXPECT_THAT("Hello", StartsWith("Hell")); in TEST()
2517 Matcher<const char*> starts_with_he = StartsWith("he"); in TEST()
2883 const Matcher<const string*> m = Pointee(StartsWith("Hi")); in TEST()
2976 m = Field(&AStruct::p, StartsWith("hi")); in TEST()
3161 Matcher<const AClass&> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3187 Matcher<AClass> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3262 Matcher<AClass*> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3275 Matcher<AClass* const&> m = Property(&AClass::s, StartsWith("hi")); in TEST()