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

References

tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
   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));