Lines Matching full:hello
26 EXPECT_TRUE(EndsWith("hello there!", "there!")); in TEST()
27 EXPECT_TRUE(EndsWith("hello there!", "!")); in TEST()
28 EXPECT_FALSE(EndsWith("hello there!", "there")); in TEST()
29 EXPECT_FALSE(EndsWith("hello there!", " hello there!")); in TEST()
30 EXPECT_TRUE(EndsWith("hello there!", "")); in TEST()
31 EXPECT_FALSE(EndsWith("", "hello there!")); in TEST()
35 EXPECT_TRUE(StartsWith("hello there!", "hello")); in TEST()
36 EXPECT_TRUE(StartsWith("hello there!", "hello ")); in TEST()
37 EXPECT_FALSE(StartsWith("hello there!", "there!")); in TEST()
38 EXPECT_FALSE(StartsWith("hello there!", " hello there! ")); in TEST()
39 EXPECT_TRUE(StartsWith("hello there!", "")); in TEST()
40 EXPECT_FALSE(StartsWith("", "hello there!")); in TEST()
44 StringPiece str("hello there!"); in TEST()
45 EXPECT_TRUE(ConsumePrefix(&str, "hello ")); in TEST()
58 StringPiece str("hello there!"); in TEST()
60 EXPECT_EQ(str.ToString(), "hello there"); in TEST()
62 EXPECT_EQ(str.ToString(), "hello"); in TEST()
65 EXPECT_TRUE(ConsumeSuffix(&str, "hello")); in TEST()
72 StringPiece str("<hello there!>"); in TEST()