Lines Matching refs:DeletionTestValue
178 class DeletionTestValue : public Value { class
180 explicit DeletionTestValue(bool* deletion_flag) : Value(TYPE_NULL) { in DeletionTestValue() function in base::DeletionTestValue
190 ~DeletionTestValue() override { *deletion_flag_ = true; } in ~DeletionTestValue()
201 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
208 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
216 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
229 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
245 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
254 scoped_ptr<DeletionTestValue> value(new DeletionTestValue(&deletion_flag)); in TEST()
255 DeletionTestValue* original_value = value.get(); in TEST()
272 dict.Set(key, make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
279 dict.Set(key, make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
287 dict.Set(key, make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
301 dict.Set(key, make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
315 dict.Set(key, make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()