Lines Matching refs:c2
82 Cleanable c2; in TEST_F() local
86 c1.DelegateCleanupsTo(&c2); in TEST_F()
96 Cleanable c2; in TEST_F() local
99 c1.DelegateCleanupsTo(&c2); in TEST_F()
109 Cleanable c2; in TEST_F() local
114 c1.DelegateCleanupsTo(&c2); in TEST_F()
124 Cleanable c2; in TEST_F() local
125 c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5; in TEST_F()
130 c1.DelegateCleanupsTo(&c2); // res = 2 * 3 * 5; in TEST_F()
140 Cleanable c2; in TEST_F() local
141 c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5; in TEST_F()
142 c2.RegisterCleanup(Multiplier, &res, &n7); // res = 5 * 7; in TEST_F()
147 c1.DelegateCleanupsTo(&c2); // res = 2 * 3 * 5 * 7; in TEST_F()
157 Cleanable c2; in TEST_F() local
158 c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5; in TEST_F()
159 c2.RegisterCleanup(Multiplier, &res, &n7); // res = 5 * 7; in TEST_F()
163 c1.DelegateCleanupsTo(&c2); // res = 2 * 5 * 7; in TEST_F()
173 Cleanable c2; in TEST_F() local
174 c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5; in TEST_F()
175 c2.RegisterCleanup(Multiplier, &res, &n7); // res = 5 * 7; in TEST_F()
178 c1.DelegateCleanupsTo(&c2); // res = 5 * 7; in TEST_F()
188 Cleanable c2; in TEST_F() local
189 c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5; in TEST_F()
192 c1.DelegateCleanupsTo(&c2); // res = 5; in TEST_F()