• Home
  • Raw
  • Download

Lines Matching refs:value_

237     value_ = TypeField::encode(type) | AttributesField::encode(attributes) |  in PropertyDetails()
249 value_ = TypeField::encode(type)
258 value_ = KindField::encode(kind) | LocationField::encode(location) |
268 int pointer() const { return DescriptorPointer::decode(value_); } in pointer()
271 return PropertyDetails(value_, i); in set_pointer()
276 details.value_ = PropertyCellTypeField::update(details.value_, type); in set_cell_type()
282 details.value_ = DictionaryStorageField::update(details.value_, index); in set_index()
287 return PropertyDetails(value_, representation); in CopyWithRepresentation()
292 return PropertyDetails(value_, new_attributes); in CopyAddAttributes()
307 PropertyKind kind() const { return KindField::decode(value_); } in kind()
308 PropertyLocation location() const { return LocationField::decode(value_); } in location()
310 PropertyType type() const { return TypeField::decode(value_); } in type()
313 return AttributesField::decode(value_); in attributes()
317 return DictionaryStorageField::decode(value_); in dictionary_index()
321 return DecodeRepresentation(RepresentationField::decode(value_)); in representation()
324 int field_index() const { return FieldIndexField::decode(value_); } in field_index()
336 return PropertyCellTypeField::decode(value_); in cell_type()
378 value_ = DescriptorPointer::update(value, pointer); in PropertyDetails()
381 value_ = RepresentationField::update( in PropertyDetails()
385 value_ = AttributesField::update(value, attributes); in PropertyDetails()
388 uint32_t value_; variable