Lines Matching full:hello
34 { "a+hello", 10, "aa", "ahello" },
35 { "a*hello", 10, "a", "hello" },
51 { "(?i)a+hello", 10, "AA", "ahello" },
52 { "(?i)a*hello", 10, "A", "hello" },
69 { "\\Aa+hello", 10, "aa", "ahello" },
70 { "\\Aa*hello", 10, "a", "hello" },
86 { "(?i)\\Aa+hello", 10, "AA", "ahello" },
87 { "(?i)\\Aa*hello", 10, "A", "hello" },
143 EXPECT_FALSE(RE2(".+hello", RE2::Latin1).
146 EXPECT_FALSE(RE2(".*hello", RE2::Latin1).
157 EXPECT_FALSE(RE2("*hello").PossibleMatchRange(&min, &max, 10))