Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:id

10   int id;
11 ImplicitCopy() { id = 10; }
12 ~ImplicitCopy() { id = 20; }
16 int id;
17 ThrowCopy() { id = 15; }
19 id = 25;
22 ~ThrowCopy() { id = 35; }
26 int id;
30 Container() { id = 1000; }
31 ~Container() { id = 2000; }