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

References

tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
  373   EXPECT_TRUE(matches("class Y { void x() { x(); } };", CallMethodX));
  374   EXPECT_TRUE(notMatches("class Y { void x() {} };", CallMethodX));
  376   CallMethodX = callExpr(callee(cxxConversionDecl()));
  378     matches("struct Y { operator int() const; }; int i = Y();", CallMethodX));
  380                          CallMethodX));