Home | History | Annotate | Download | only in testing

Lines Matching refs:word3

322   string word3;
324 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
327 CHECK_EQ(word3, "");
328 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
331 CHECK_EQ(word3, "");
332 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
335 CHECK_EQ(word3, "baz");
336 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));