Home | History | Annotate | Download | only in testing

Lines Matching full:word2

321   string word2;
324 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
326 CHECK_EQ(word2, "");
328 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
330 CHECK_EQ(word2, "bar");
332 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
334 CHECK_EQ(word2, "");
336 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));