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

References

tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
  429     "class Y { public: void x() { Y y; y.x(); } };", CallOnVariableY));
  431     "class Y { public: void x() const { Y y; y.x(); } };", CallOnVariableY));
  434       "class X : public Y { void z() { X y; y.x(); } };", CallOnVariableY));
  437       "class X : public Y { void z() { X *y; y->x(); } };", CallOnVariableY));
  441     CallOnVariableY));