Lines Matching refs:Descriptor
24 class Descriptor BASE_EMBEDDED {
45 Descriptor() : details_(Smi::FromInt(0)) {} in Descriptor() function
53 Descriptor(Handle<Name> key, Handle<Object> value, PropertyDetails details) in Descriptor() function
58 Descriptor(Handle<Name> key,
73 OStream& operator<<(OStream& os, const Descriptor& d);
76 class FieldDescriptor FINAL : public Descriptor {
82 : Descriptor(key, HeapType::Any(key->GetIsolate()), attributes, in FieldDescriptor()
89 : Descriptor(key, field_type, attributes, FIELD, in FieldDescriptor()
94 class ConstantDescriptor FINAL : public Descriptor {
99 : Descriptor(key, value, attributes, CONSTANT, in ConstantDescriptor()
104 class CallbacksDescriptor FINAL : public Descriptor {
109 : Descriptor(key, foreign, attributes, CALLBACKS, in CallbacksDescriptor()