HomeSort by relevance Sort by last modified time
    Searched refs:has_writable (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
property-descriptor.h 36 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));
property-descriptor.cc 98 (desc->has_value() || desc->has_writable())) {
155 if (has_writable()) {
283 (desc->has_value() || desc->has_writable())) {
314 if (!desc->has_writable()) desc->set_writable(false);
objects.cc     [all...]

Completed in 45 milliseconds