reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
75 EXPECT_TRUE(matches("int k;", StartsWithK)); 76 EXPECT_TRUE(matches("int kAbc;", StartsWithK)); 77 EXPECT_TRUE(matches("namespace x { int kTest; }", StartsWithK)); 78 EXPECT_TRUE(matches("class C { int k; };", StartsWithK)); 79 EXPECT_TRUE(notMatches("class C { int ckc; };", StartsWithK));