Lines Matching refs:reset
59 tmp.reset(0); // test out reset(0) when already at 0 in test_autostarray()
60 tmp.reset(4); // this should force a new allocation in test_autostarray()
62 tmp[0].reset(SkRef(&obj0)); in test_autostarray()
63 tmp[1].reset(SkRef(&obj1)); in test_autostarray()
68 tmp.reset(0); in test_autostarray()
73 tmp.reset(2); // this should use the preexisting allocation in test_autostarray()
75 tmp[0].reset(SkRef(&obj0)); in test_autostarray()
76 tmp[1].reset(SkRef(&obj1)); in test_autostarray()
88 tmp[0].reset(SkRef(&obj0)); in test_autostarray()
89 tmp[1].reset(SkRef(&obj1)); in test_autostarray()
94 tmp.reset(0); in test_autostarray()
98 tmp.reset(2); // this should use the preexisting storage in test_autostarray()
99 tmp[0].reset(SkRef(&obj0)); in test_autostarray()
100 tmp[1].reset(SkRef(&obj1)); in test_autostarray()
104 tmp.reset(4); // this should force a new malloc in test_autostarray()
108 tmp[0].reset(SkRef(&obj0)); in test_autostarray()
109 tmp[1].reset(SkRef(&obj1)); in test_autostarray()