• Home
  • Raw
  • Download

Lines Matching refs: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::TAGGED); in CreatePrototypeHClass()
202 attributes.SetOffset(index); in CreatePrototypeHClass()
203 layout->AddKey(thread, index, key.GetTaggedValue(), attributes); in CreatePrototypeHClass()
250 PropertyAttributes attributes; in CreateConstructorHClass() local
253 attributes = PropertyAttributes::Default(false, false, true); in CreateConstructorHClass()
257 attributes = PropertyAttributes::Default(false, false, true); in CreateConstructorHClass()
260 attributes = PropertyAttributes::Default(true, false, true); in CreateConstructorHClass()
264 attributes = PropertyAttributes::DefaultAccessor(false, false, false); in CreateConstructorHClass()
267 attributes = PropertyAttributes::Default(true, false, true); in CreateConstructorHClass()
272 attributes.SetIsAccessor(true); in CreateConstructorHClass()
275 attributes.SetIsInlinedProps(true); in CreateConstructorHClass()
276 attributes.SetRepresentation(Representation::TAGGED); in CreateConstructorHClass()
277 attributes.SetOffset(index); in CreateConstructorHClass()
278 layout->AddKey(thread, index, key.GetTaggedValue(), attributes); in CreateConstructorHClass()
527 PropertyAttributes attributes; in BuildDictionaryProperties() local
531 attributes = PropertyAttributes::Default(false, false, true); in BuildDictionaryProperties()
535 attributes = PropertyAttributes::Default(false, false, true); in BuildDictionaryProperties()
538 attributes = PropertyAttributes::Default(true, false, true); in BuildDictionaryProperties()
542 attributes = PropertyAttributes::DefaultAccessor(false, false, false); in BuildDictionaryProperties()
545 attributes = PropertyAttributes::Default(true, false, true); in BuildDictionaryProperties()
549 attributes = PropertyAttributes::Default(true, false, true); // non-enumerable in BuildDictionaryProperties()
559 …ameDictionary> newDict = NameDictionary::PutIfAbsent(thread, dict, propKey, propValue, attributes); in BuildDictionaryProperties()