Lines Matching defs:MethodOnY
338 StatementMatcher MethodOnY =
342 MethodOnY));
344 MethodOnY));
346 "class Y { public: void x(); }; void z(Y *&y) { y->x(); }", MethodOnY));
348 "class Y { public: void x(); }; void z(Y y[]) { y->x(); }", MethodOnY));
350 "class Y { public: void x(); }; void z() { Y *y; y->x(); }", MethodOnY));
507 StatementMatcher MethodOnY = traverse(
511 MethodOnY));
513 MethodOnY));
515 "class Y { public: void x(); }; void z(Y *&y) { y->x(); }", MethodOnY));
517 "class Y { public: void x(); }; void z(Y y[]) { y->x(); }", MethodOnY));
519 "class Y { public: void x(); }; void z() { Y *y; y->x(); }", MethodOnY));
528 MethodOnY));