Lines Matching refs:acc
45 AccessorData *acc = AccessorData::Cast(accObject);
46 EXPECT_TRUE(JSTaggedValue(acc).IsAccessorData());
78 AccessorData *acc = AccessorData::Cast(accObject);
79 acc->SetGetter(thread, JSTaggedValue::Undefined());
80 acc->SetSetter(thread, JSTaggedValue::Undefined());
81 EXPECT_EQ(acc->IsInternal(), false);
127 AccessorData *acc = AccessorData::Cast(accObject);
128 acc->SetGetter(thread, JSTaggedValue::Undefined());
129 acc->SetSetter(thread, JSTaggedValue::Undefined());
130 EXPECT_EQ(acc->HasSetter(), false);
131 acc->SetSetter(thread, normalFunction);
132 EXPECT_EQ(acc->HasSetter(), true);