• Home
  • Raw
  • Download

Lines Matching full:attributes

194 … PropertyAttributes attributes = PropertyAttributes::Default(true, false, true);  // non-enumerable  in CreatePrototypeHClass()  local
197 attributes.SetIsAccessor(true); in CreatePrototypeHClass()
200 attributes.SetIsInlinedProps(true); in CreatePrototypeHClass()
201 attributes.SetRepresentation(Representation::MIXED); in CreatePrototypeHClass()
202 attributes.SetOffset(index); in CreatePrototypeHClass()
203 layout->AddKey(thread, index, key.GetTaggedValue(), attributes); in CreatePrototypeHClass()
241 PropertyAttributes attributes; in CreateConstructorHClass() local
244 attributes = PropertyAttributes::Default(false, false, true); in CreateConstructorHClass()
248 attributes = PropertyAttributes::Default(false, false, true); in CreateConstructorHClass()
251 attributes = PropertyAttributes::Default(true, false, true); in CreateConstructorHClass()
255 attributes = PropertyAttributes::DefaultAccessor(false, false, false); in CreateConstructorHClass()
258 attributes = PropertyAttributes::Default(true, false, true); in CreateConstructorHClass()
263 attributes.SetIsAccessor(true); in CreateConstructorHClass()
266 attributes.SetIsInlinedProps(true); in CreateConstructorHClass()
267 attributes.SetRepresentation(Representation::MIXED); in CreateConstructorHClass()
268 attributes.SetOffset(index); in CreateConstructorHClass()
269 layout->AddKey(thread, index, key.GetTaggedValue(), attributes); in CreateConstructorHClass()
475 PropertyAttributes attributes; in BuildDictionaryProperties() local
479 attributes = PropertyAttributes::Default(false, false, true); in BuildDictionaryProperties()
483 attributes = PropertyAttributes::Default(false, false, true); in BuildDictionaryProperties()
486 attributes = PropertyAttributes::Default(true, false, true); in BuildDictionaryProperties()
490 attributes = PropertyAttributes::DefaultAccessor(false, false, false); in BuildDictionaryProperties()
493 attributes = PropertyAttributes::Default(true, false, true); in BuildDictionaryProperties()
497 attributes = PropertyAttributes::Default(true, false, true); // non-enumerable in BuildDictionaryProperties()
507 …ameDictionary> newDict = NameDictionary::PutIfAbsent(thread, dict, propKey, propValue, attributes); in BuildDictionaryProperties()