Lines Matching refs:isDeleted
55 bool isDeleted; in TYPED_TEST() local
56 sp<TypeParam> sp1 = sp<TypeParam>::make(&isDeleted); in TYPED_TEST()
67 ASSERT_FALSE(isDeleted) << "deleted too early! still has a reference!"; in TYPED_TEST()
72 ASSERT_TRUE(isDeleted) << "foo was leaked!"; in TYPED_TEST()
82 bool isDeleted; in TYPED_TEST() local
83 sp<TypeParam> foo = sp<TypeParam>::make(&isDeleted); in TYPED_TEST()
91 bool isDeleted; in TYPED_TEST() local
92 sp<TypeParam> foo = sp<TypeParam>::make(&isDeleted); in TYPED_TEST()
96 EXPECT_FALSE(isDeleted); in TYPED_TEST()
98 EXPECT_FALSE(isDeleted); in TYPED_TEST()
100 EXPECT_TRUE(isDeleted); in TYPED_TEST()
104 bool isDeleted; in TYPED_TEST() local
105 TypeParam* foo = new TypeParam(&isDeleted); in TYPED_TEST()