Searched defs:has_writable (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dproperty-descriptor.h36 return desc->has_value() || desc->has_writable();
56 return !has_enumerable() && !has_configurable() && !has_writable() &&
62 !has_writable() && has_get() && has_set();
67 has_writable() && !has_get() && !has_set();
93 bool has_writable() const { return has_writable_; } function in class:v8::internal::PropertyDescriptor
110 (has_writable() && !writable() ? READ_ONLY : NONE));
H A Dapi.cc4078 DCHECK(private_->desc.has_writable());
4082 bool v8::PropertyDescriptor::has_writable() const { function in class:v8::v8::PropertyDescriptor
4083 return private_->desc.has_writable();

Completed in 45 milliseconds