Lines Matching defs:desc
29 static bool IsAccessorDescriptor(PropertyDescriptor* desc) {
30 return desc->has_get() || desc->has_set();
34 static bool IsDataDescriptor(PropertyDescriptor* desc) {
35 return desc->has_value() || desc->has_writable();
39 static bool IsGenericDescriptor(PropertyDescriptor* desc) {
40 return !IsAccessorDescriptor(desc) && !IsDataDescriptor(desc);
50 PropertyDescriptor* desc);
54 PropertyDescriptor* desc);