Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:iQ

13   Q(int i){ iQ = i; }
14 int iQ;
15 void QPR() { printf("iQ = %d\n", iQ); }
18 struct IQ {
19 IQ(int i) { iIQ = i; }
24 struct L : IQ {
25 L(int i) : IQ(i+100) { iL = i; }
43 printf("iQ = %d\n", iQ);