Searched defs:PropertyDescriptor (Results 1 – 8 of 8) sorted by relevance
645 struct PropertyDescriptor { struct646 bool enumerable : 1;647 bool has_enumerable : 1;648 bool configurable : 1;649 bool has_configurable : 1;650 bool writable : 1;651 bool has_writable : 1;652 v8::Local<v8::Value> value;653 v8::Local<v8::Value> get;654 v8::Local<v8::Value> set;
20 PropertyDescriptor() in PropertyDescriptor() function
49 class PropertyDescriptor; variable
515 struct PropertyDescriptor { struct516 FieldIndex field_index;517 ObjectData* field_owner = nullptr;
89 interface PropertyDescriptor { interface
109 interface PropertyDescriptor { interface
4360 v8::PropertyDescriptor::PropertyDescriptor() : private_(new PrivateData()) {} in PropertyDescriptor() function in v8::v8::PropertyDescriptor4363 v8::PropertyDescriptor::PropertyDescriptor(v8::Local<v8::Value> value) in PropertyDescriptor() function in v8::v8::PropertyDescriptor4369 v8::PropertyDescriptor::PropertyDescriptor(v8::Local<v8::Value> value, in PropertyDescriptor() function in v8::v8::PropertyDescriptor4377 v8::PropertyDescriptor::PropertyDescriptor(v8::Local<v8::Value> get, in PropertyDescriptor() function in v8::v8::PropertyDescriptor
100264 struct PropertyDescriptor { struct100271 PropertyDescriptor() in PropertyDescriptor() function100284 class WrappedPtrOperations<JS::PropertyDescriptor, Wrapper>