Lines Matching refs:DeletionTestValue
164 class DeletionTestValue : public Value { class
166 explicit DeletionTestValue(bool* deletion_flag) : Value(TYPE_NULL) { in DeletionTestValue() function in base::DeletionTestValue
176 ~DeletionTestValue() override { *deletion_flag_ = true; } in ~DeletionTestValue()
187 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
194 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
202 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
215 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
231 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
240 scoped_ptr<DeletionTestValue> value(new DeletionTestValue(&deletion_flag)); in TEST()
241 DeletionTestValue* original_value = value.get(); in TEST()
258 dict.Set(key, make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
265 dict.Set(key, make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()
273 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()