Home | History | Annotate | Download | only in Linux

Lines Matching defs:S12

17 struct S12 {
35 void Del12(S12 *x) {
39 void Del12NoThrow(S12 *x) {
43 void Del12Ar(S12 *x) {
47 void Del12ArNoThrow(S12 *x) {
56 Del12(new S12);
57 Del12NoThrow(new S12);
58 Del12Ar(new S12[100]);
59 Del12ArNoThrow(new S12[100]);
63 Del12Ar(reinterpret_cast<S12*>(new S20[100]));
64 Del12NoThrow(reinterpret_cast<S12*>(new S20));
65 Del12ArNoThrow(reinterpret_cast<S12*>(new S20[100]));
72 Del12(reinterpret_cast<S12*>(new S20));