Home | History | Annotate | Download | only in src

Lines Matching refs:Descriptor

16 // Abstraction for elements in instance-descriptor arrays.
18 // Each descriptor has a key, property attributes, property type,
19 // property index (in the actual instance-descriptor array) and
21 class Descriptor BASE_EMBEDDED {
35 Descriptor() : details_(Smi::kZero) {}
45 Descriptor(Handle<Name> key, Handle<Object> value, PropertyDetails details)
51 Descriptor(Handle<Name> key, Handle<Object> value,
66 std::ostream& operator<<(std::ostream& os, const Descriptor& d);
69 class DataDescriptor final : public Descriptor {
77 : Descriptor(key, wrapped_field_type, attributes, DATA, representation,
84 class DataConstantDescriptor final : public Descriptor {
88 : Descriptor(key, value, attributes, DATA_CONSTANT,
93 class AccessorConstantDescriptor final : public Descriptor {
97 : Descriptor(key, foreign, attributes, ACCESSOR_CONSTANT,