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

References

unittests/Support/RegexTest.cpp
   28   EXPECT_TRUE(r2.match("aa216b", &Matches));
   29   EXPECT_EQ(1u, Matches.size());
   30   EXPECT_EQ("216", Matches[0].str());
   33   EXPECT_TRUE(r3.match("9a:513b", &Matches));
   34   EXPECT_EQ(3u, Matches.size());
   35   EXPECT_EQ("9a:513", Matches[0].str());
   36   EXPECT_EQ("a", Matches[1].str());
   37   EXPECT_EQ("513", Matches[2].str());
   39   EXPECT_TRUE(r3.match("9:513b", &Matches));
   40   EXPECT_EQ(3u, Matches.size());
   41   EXPECT_EQ("9:513", Matches[0].str());
   42   EXPECT_EQ("", Matches[1].str());
   43   EXPECT_EQ("513", Matches[2].str());
   49   EXPECT_TRUE(r4.match(String, &Matches));
   50   EXPECT_EQ(1u, Matches.size());
   51   EXPECT_EQ(String, Matches[0].str());