Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:method

29 //   FIRST TEST: a method becomes marked with optnone in the specialization.
33 T method(T t, U u)
42 __attribute__((optnone)) int method (int t, U u)
49 // method is not marked optnone) and an instantiation of the partially
50 // specialized template (whose method is marked optnone).
57 float r1 = class_normal.method(z, y);
58 float r2 = class_optnone.method(y, z);
66 // SECOND TEST: a method loses optnone in the specialization.
70 __attribute__((optnone)) T method(T t, U u)
79 int method (int t, U u)
86 // method is marked optnone) and an instantiation of the partially
87 // specialized template (whose method is not marked optnone).
94 float r1 = class_optnone.method(z, y);
95 float r2 = class_normal.method(y, z);