reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Support/RegexTest.cpp
   66   EXPECT_TRUE(r1.match("abc_abc", &Matches));
   67   EXPECT_EQ(2u, Matches.size());
   68   EXPECT_FALSE(r1.match("abc_ab", &Matches));
   71   EXPECT_TRUE(r2.match("a4b4c4", &Matches));
   72   EXPECT_EQ(2u, Matches.size());
   73   EXPECT_EQ("4", Matches[1].str());
   77   EXPECT_TRUE(r3.match("a6zb6z", &Matches));
   78   EXPECT_EQ(3u, Matches.size());
   79   EXPECT_EQ("6", Matches[1].str());
   80   EXPECT_EQ("z", Matches[2].str());