Lines Matching refs:StartsWith
126 using testing::StartsWith;
1103 StartsWith("which is located @")); in TEST()
1107 StartsWith("which is located @")); in TEST()
1404 const Matcher<const char*> m1 = StartsWith(string("")); in TEST()
1409 const Matcher<const string&> m2 = StartsWith("Hi"); in TEST()
1418 Matcher<const std::string> m = StartsWith("Hi"); in TEST()
1638 const Matcher<const wchar_t*> m1 = StartsWith(::std::wstring(L"")); in TEST()
1643 const Matcher<const ::std::wstring&> m2 = StartsWith(L"Hi"); in TEST()
1652 Matcher<const ::std::wstring> m = StartsWith(L"Hi"); in TEST()
1829 const Matcher<const wchar_t*> m1 = StartsWith(::wstring(L"")); in TEST()
1834 const Matcher<const ::wstring&> m2 = StartsWith(L"Hi"); in TEST()
1843 Matcher<const ::wstring> m = StartsWith(L"Hi"); in TEST()
2482 EXPECT_TRUE(Value("hi", StartsWith("h"))); in TEST()
2567 EXPECT_THAT("Hello", StartsWith("Hell")); in TEST()
2626 Matcher<const char*> starts_with_he = StartsWith("he"); in TEST()
3166 const Matcher<const string*> m = Pointee(StartsWith("Hi")); in TEST()
3259 m = Field(&AStruct::p, StartsWith("hi")); in TEST()
3444 Matcher<const AClass&> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3470 Matcher<AClass> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3545 Matcher<AClass*> m = Property(&AClass::s, StartsWith("hi")); in TEST()
3558 Matcher<AClass* const&> m = Property(&AClass::s, StartsWith("hi")); in TEST()