Lines Matching defs:attr
60 const PropertyAttributes &attr)
64 TaggedArray::Set(thread, fixedIdx + ATTR_INDEX_OFFSET, attr.GetNormalTagged());
67 inline void LayoutInfo::SetNormalAttr(const JSThread *thread, int index, const PropertyAttributes &attr)
71 oldAttr.SetNormalAttr(attr.GetNormalAttr());
101 PropertyAttributes attr(TaggedArray::Get(fixedIdx));
102 attr.SetSortedIndex(sortedIndex);
103 TaggedArray::Set(thread, fixedIdx, attr.GetTaggedValue());
194 PropertyAttributes attr(TaggedArray::Get(fixedIdx));
195 attr.SetIsNotHole(true);
196 TaggedArray::Set(thread, fixedIdx, attr.GetTaggedValue());
199 inline void LayoutInfo::UpdateTrackTypeAttr(int index, const PropertyAttributes &attr)
203 oldAttr.SetNormalAttr(attr.GetNormalAttr());
211 PropertyAttributes attr(TaggedArray::Get(fixedIdx));
212 attr.SetIsPGODumped(true);
213 SetWithoutBarrier(fixedIdx, attr.GetTaggedValue());
218 const PropertyAttributes &attr)
222 ASSERT(attr.GetOffset() == static_cast<uint32_t>(number));
226 SetPropertyInit(thread, number, key, attr);