Lines Matching refs:c1

30   { Cleanable c1; }  in TEST_F()  local
36 Cleanable c1; in TEST_F() local
37 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
44 Cleanable c1; in TEST_F() local
45 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
46 c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3; in TEST_F()
54 Cleanable c1; in TEST_F() local
55 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
56 c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3; in TEST_F()
57 c1.Reset(); in TEST_F()
66 Cleanable c1; in TEST_F() local
67 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
68 c1.Reset(); in TEST_F()
70 c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3; in TEST_F()
84 Cleanable c1; in TEST_F() local
85 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
86 c1.DelegateCleanupsTo(&c2); in TEST_F()
98 Cleanable c1; in TEST_F() local
99 c1.DelegateCleanupsTo(&c2); in TEST_F()
111 Cleanable c1; in TEST_F() local
112 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
113 c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3; in TEST_F()
114 c1.DelegateCleanupsTo(&c2); in TEST_F()
127 Cleanable c1; in TEST_F() local
128 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
129 c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3; in TEST_F()
130 c1.DelegateCleanupsTo(&c2); // res = 2 * 3 * 5; in TEST_F()
144 Cleanable c1; in TEST_F() local
145 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
146 c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3; in TEST_F()
147 c1.DelegateCleanupsTo(&c2); // res = 2 * 3 * 5 * 7; in TEST_F()
161 Cleanable c1; in TEST_F() local
162 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
163 c1.DelegateCleanupsTo(&c2); // res = 2 * 5 * 7; in TEST_F()
177 Cleanable c1; in TEST_F() local
178 c1.DelegateCleanupsTo(&c2); // res = 5 * 7; in TEST_F()
191 Cleanable c1; in TEST_F() local
192 c1.DelegateCleanupsTo(&c2); // res = 5; in TEST_F()
238 Cleanable c1; in TEST_F() local
239 c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2; in TEST_F()
240 value.PinSlice(slice, &c1); in TEST_F()