Searched refs:deletion_flag (Results 1 – 2 of 2) sorted by relevance
166 explicit DeletionTestValue(bool* deletion_flag) : Value(TYPE_NULL) { in DeletionTestValue() argument167 Init(deletion_flag); // Separate function so that we can use ASSERT_* in DeletionTestValue()170 void Init(bool* deletion_flag) { in Init() argument171 ASSERT_TRUE(deletion_flag); in Init()172 deletion_flag_ = deletion_flag; in Init()183 bool deletion_flag = true; in TEST() local187 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()188 EXPECT_FALSE(deletion_flag); in TEST()190 EXPECT_TRUE(deletion_flag); in TEST()194 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()[all …]
180 explicit DeletionTestValue(bool* deletion_flag) : Value(TYPE_NULL) { in DeletionTestValue() argument181 Init(deletion_flag); // Separate function so that we can use ASSERT_* in DeletionTestValue()184 void Init(bool* deletion_flag) { in Init() argument185 ASSERT_TRUE(deletion_flag); in Init()186 deletion_flag_ = deletion_flag; in Init()197 bool deletion_flag = true; in TEST() local201 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()202 EXPECT_FALSE(deletion_flag); in TEST()204 EXPECT_TRUE(deletion_flag); in TEST()208 list.Append(make_scoped_ptr(new DeletionTestValue(&deletion_flag))); in TEST()[all …]