Home | History | Annotate | Download | only in testing

Lines Matching defs:word1

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