Home | History | Annotate | Download | only in testing

Lines Matching defs:word1

320   string word1;
324 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
325 CHECK_EQ(word1, "foo");
328 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
329 CHECK_EQ(word1, "");
332 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
333 CHECK_EQ(word1, "");
336 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));