Lines Matching full:attributes
186 … PropertyAttributes attributes = PropertyAttributes::Default(true, false, true); // non-enumerable in CreatePrototypeHClass() local
189 attributes.SetIsAccessor(true); in CreatePrototypeHClass()
192 attributes.SetIsInlinedProps(true); in CreatePrototypeHClass()
193 attributes.SetRepresentation(Representation::MIXED); in CreatePrototypeHClass()
194 attributes.SetOffset(index); in CreatePrototypeHClass()
195 layout->AddKey(thread, index, key.GetTaggedValue(), attributes); in CreatePrototypeHClass()
227 PropertyAttributes attributes; in CreateConstructorHClass() local
230 attributes = PropertyAttributes::Default(false, false, true); in CreateConstructorHClass()
234 attributes = PropertyAttributes::Default(false, false, true); in CreateConstructorHClass()
237 attributes = PropertyAttributes::Default(true, false, true); in CreateConstructorHClass()
241 attributes = PropertyAttributes::DefaultAccessor(false, false, false); in CreateConstructorHClass()
244 attributes = PropertyAttributes::Default(true, false, true); in CreateConstructorHClass()
249 attributes.SetIsAccessor(true); in CreateConstructorHClass()
252 attributes.SetIsInlinedProps(true); in CreateConstructorHClass()
253 attributes.SetRepresentation(Representation::MIXED); in CreateConstructorHClass()
254 attributes.SetOffset(index); in CreateConstructorHClass()
255 layout->AddKey(thread, index, key.GetTaggedValue(), attributes); in CreateConstructorHClass()
366 PropertyAttributes attributes; in BuildDictionaryPropeties() local
370 attributes = PropertyAttributes::Default(false, false, true); in BuildDictionaryPropeties()
374 attributes = PropertyAttributes::Default(false, false, true); in BuildDictionaryPropeties()
377 attributes = PropertyAttributes::Default(true, false, true); in BuildDictionaryPropeties()
381 attributes = PropertyAttributes::DefaultAccessor(false, false, false); in BuildDictionaryPropeties()
384 attributes = PropertyAttributes::Default(true, false, true); in BuildDictionaryPropeties()
388 attributes = PropertyAttributes::Default(true, false, true); // non-enumerable in BuildDictionaryPropeties()
397 …ameDictionary> newDict = NameDictionary::PutIfAbsent(thread, dict, propKey, propValue, attributes); in BuildDictionaryPropeties()