Home | History | Annotate | Download | only in pcre

Lines Matching refs:word3

419   string word3;
422 CHECK(r.PartialMatch("foo", &word1, &word2, &word3));
425 CHECK_EQ(word3, "");
426 CHECK(r.PartialMatch("bar", &word1, &word2, &word3));
429 CHECK_EQ(word3, "");
430 CHECK(r.PartialMatch("baz", &word1, &word2, &word3));
433 CHECK_EQ(word3, "baz");
434 CHECK(!r.PartialMatch("f", &word1, &word2, &word3));