Lines Matching +defs:M +defs:A
7 struct M { struct
8 M() { printf("M()\n"); } in M() argument
9 M(int i) { iM = i; printf("M(%d)\n", i); } in M() argument
10 int iM; argument
11 void MPR() {printf("iM = %d\n", iM); }; in MPR() argument
65 template <class T> struct A { struct
66 A() {} in A() function
67 A(int) {} in A() function
68 A(const A&) {} in A() function
69 ~A() {} in ~A() argument
76 A<short> a4 = 97; in f() argument
89 struct A { A(int); }; struct